September 2017
Intermediate to advanced
450 pages
11h 24m
English
Let's perform the following steps to add some detailed debugging support to our Express application using the debug module:
{ ... "scripts": { "clean": "rimraf ./dist", "start": "node ./dist/express.bundle.js", "debug": "DEBUG=express* node debug ./dist/express.bundle.js", "build": "webpack", "watch": "npm-run-all clean build --parallel watch:server watch:build --print-label", "watch:build": "webpack --watch", "watch:server": "nodemon ./dist/express.bundle.js --watch ./dist --on-change-only" }, ...}
Read now
Unlock full access