Aleph.js —— Deno 中的全栈框架
Aleph.js 是 Deno 中的全栈框架,为开发者提供构建 Web 应用程序的最佳体验。 注:开发团队目前正在重写此框架,许多内容可能随时发生更改。 开始使用 初始化一个新项目,你可以使用 --template标志选择一个开始模板,可用模板: [react, vue, api, yew] deno run -A https://deno.land/x/aleph@1.0.0-alpha.66/cli.ts init --template react init之后,可以使用 deno 任务运行应用程序: # go to the app root created by the `init` cd APPDIR # run the app in devlopment mode deno task dev # run the app in production mode deno task start # build the app for severless deployment deno task build 使用新架构部署的一些演示应用程序: Rea...
