A series of NodeJS projects without external libraries:
- RESTful API
- Web App GUI
- Admin CLI (this also includes tests, and stability and performance improvements)
node inspect
to debug NodeJS code. You can adddebugger
statements in your code to pause execution and inspect the state of your program. Then, you can use:repl
command to inspect the state of your programc
command to continue execution
node --use-strict
to enable strict mode. Although this is the default in ES6 modules, you can use it to debug old code.