An educational project api based on the chronos feel. Live https://version-verse-api.onrender.com/
- Become familiar with https://expressjs.com/
- Implementing a JWT auth
- DB management with https://www.prisma.io/
- Debugging with https://github.com/microsoft/vscode-js-debug
- To be able to attach a debugger a process use an
--inspect
flag - On hot reload the child processes are not being killed use
--tree-kill
flag with ts-node orprocess.on('SIGTERM', () => process.exit())
- Bcrypt's function hash or hashSync will take forever if you set rounds to your favorite number (69) to reproduce
hash(password, 69)