This is a sample application that brings Nuxt.js and Nest.js together.
# install dependencies
$ npm install
# run tests
$ npm run test:client (client only)
$ npm run test:server (server only)
$ npm run test:e2e (end to end server tests)
$ npm run test (all)
# serve with hot reload at localhost:3000 (client) and localhost:4000 (server)
$ npm run dev:server
$ npm run dev
# build for production and launch server
$ npm run build
$ npm run start
# generate static project
$ npm run generate
For detailed explanation on how this was setup, check out this post.