Provide single node.js server with popular ssr and web framework
With NPM:
npx create-fullstack-node-app@latest
Frameworks:
render | server |
---|---|
Next.js | Nest.js |
... | Midway.js(koa-v3) |
Examples(Web IDE):
Generated Project Structure (Next.js / Nest.js)
├── Dockerfile
├── package.json
├── render
│ ├── README.md
│ ├── index.js
│ ├── next-env.d.ts
│ ├── next.config.js
│ ├── package.json
│ ├── pages
│ │ ├── _app.tsx
│ │ ├── api
│ │ │ └── hello.ts
│ │ └── index.tsx
│ ├── public
│ │ ├── favicon.ico
│ │ └── vercel.svg
│ ├── styles
│ │ ├── Home.module.css
│ │ └── globals.css
│ └── tsconfig.json
├── server
│ ├── README.md
│ ├── nest-cli.json
│ ├── package-lock.json
│ ├── package.json
│ ├── src
│ │ ├── app.controller.spec.ts
│ │ ├── app.controller.ts
│ │ ├── app.module.ts
│ │ ├── app.service.ts
│ │ └── main.ts
│ ├── test
│ │ ├── app.e2e-spec.ts
│ │ └── jest-e2e.json
│ ├── tsconfig.build.json
│ └── tsconfig.json
└── yarn.lock