September 2017
Intermediate to advanced
450 pages
11h 24m
English
Even though the command line-debug has been replaced in Node 8, this doesn't mean that you can't use it. Attempting to run the same debug command in Node 8 will simply display a deprecation warning, asking you to use the inspect instead:
[DEP0068] DeprecationWarning: `node debug` is deprecated. Please use `node inspect` instead.
Otherwise, this feature works in the same fashion as it does in Node 6, with the same debug utility commands available. If you want to remove the deprecation warning, simply update your debug script in your package.json to use the inspect command instead:
"debug": "DEBUG=express* node inspect ./dist/express.bundle.js",
The documentation for the inspect command and the deprecated debugger is virtually ...
Read now
Unlock full access