Skip to content

Files

Latest commit

0fa1c9f · Feb 4, 2024

History

History
14 lines (10 loc) · 642 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 642 Bytes

Vanilla NodeJS

A series of NodeJS projects without external libraries:

Generic Notes

  • node inspect to debug NodeJS code. You can add debugger 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 program
    • c 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.