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 inspectto debug NodeJS code. You can adddebuggerstatements in your code to pause execution and inspect the state of your program. Then, you can use:replcommand to inspect the state of your programccommand to continue execution
node --use-strictto enable strict mode. Although this is the default in ES6 modules, you can use it to debug old code.