This is the Demo of the talk "NestJS Demystified" I gave for BeJS
You can find the accompanying slides here
$ npm install
Make sure to run a docker container whit MySQL database on port 3306
docker run --name some-mysql -e MYSQL_ROOT_PASSWORD=root -e MYSQL_DATABASE=database -p 3306:3306 -d mysql
# development
$ npm run start:dev
To test you can run my Demo-test app See how to set it up here