AngularDart - 上传到共享托管服务器

AngularDart - upload to shared hosting server

所以我在我的机器上安装了我的 AngularDart 应用程序并 运行ning(我使用了 stagehand)。现在是时候将它上传到共享托管服务器了。我的问题是:这样做的正确程序是什么?因为显然 Dart 没有 运行 原生并且需要编译的 js 文件。 (我已经可以访问我的服务器的文件管理器)。

提前致谢

使用 pub 工具的 build 命令。

https://webdev.dartlang.org/tools/pub/pub-build

Use pub build when you’re ready to deploy your web app. When you run pub build, it generates the assets for the current package and all of its dependencies, putting them into new directory named build.

我只是运行我文件夹里的这个

pub run build_runner build -o build -r

它构建了我的应用程序并为 release 创建了输出 build 文件夹。然后我 ftp 将其发送到我的虚拟主机。而且因为虚拟主机支持 nodejs 和 javascript,我只需打开我的网络浏览器,瞧!