A NestJs and SvelteJs combo. A really simple ready-to-use app with best performances.
npx degit frontend-templates-world/nest-svelte # or yarn degit frontend-template-world/nest-svelte
cd nest-svelte
npm i # or yarn
# Developement
npm run dev # or yarn dev
# production mode
npm run start:prod # or yarn start:prod
# Production
npm run build # or yarn build
# unit tests
npm run test # or yarn test
# e2e tests
npm run test:e2e # or yarn test:e2e
# test coverage
npm run test:cov # or yarn test:cov
In the src/api
folder, you have all backend related file. It's where you create the api for the frontend.
The frontend is directly in src
directory.