Full-stack development based on Deno2?
Are there any good examples or open-source projects recommended for full-stack development based on Deno 2 + Vue + Vite?thanks
4 Replies
IDK about projects, but there's this doc: https://docs.deno.com/examples/vue_tutorial/
Deno
Build a Vue.js App
In-depth documentation, guides, and reference materials for building secure, high-performance JavaScript and TypeScript applications with Deno
thanks,My project code structure is similar to this, implementing full-stack development with two independent modules for frontend and backend based on Deno's workspace. However, the frontend always fails to build successfully.
my_project/
├── deno.json
├── backend/
│ ├── deno.json
│ ├── main.ts
│ └── routes/
│ └── api.ts └── frontend/
├── deno.json
├── vite.config.ts └── src/ └── main.ts
├── backend/
│ ├── deno.json
│ ├── main.ts
│ └── routes/
│ └── api.ts └── frontend/
├── deno.json
├── vite.config.ts └── src/ └── main.ts
JSR
@denovue/create-vue - JSR
@denovue/create-vue on JSR: Automates what would otherwise be a complex manual process of setting up a Vue.js project with various tools and configurations, making it much easier for developers to start new Vue.js projects with their preferred setup.
JSR
@denoelectron/newtron - JSR
@denoelectron/newtron on JSR: A desktop application framework combining Electron, Vue.js, and Deno for modern, secure desktop applications.