Aleph.jsDeno 中的全栈框架
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
使用新架构部署的一些演示应用程序:
- React Hello-world: https://aleph-hello.deno.dev/
- Vue Hello-world: https://aleph-vue.deno.dev/
- REST API: https://aleph-api.deno.dev/
- React 18 Suspense SSR: https://aleph-suspense-ssr.deno.dev/
- UnoCSS(tailwind): https://aleph-unocss.deno.dev/
- Monaco Editor: https://aleph-monaco-editor.deno.dev/
- Yew SSR: https://aleph-yew.deno.dev/
- Github OAuth Middleware: https://aleph-github-oauth.deno.dev/
评论