I am working on express.js in window environment. I have successfully started my project with npm start. Now I need to add debug statement in package.json file to enable debugging.
Like this:
"scripts": {
"start": "DEBUG=fibonacci:* node ./bin/www"
}
After I have edited in package.json and npm start command I am facing error:
Error: Debug is not an internal or external command
Note: I am following Node.js book and in the book it executes successfully.