1.

How To Enable Debugging In Express App?

Answer»

In different Operating Systems, we have FOLLOWING commands:

On Linux the COMMAND would be as FOLLOWS:

$ DEBUG=express:* node index.js

On Windows the command would be:

SET DEBUG=express:* & node index.js

In different Operating Systems, we have following commands:

On Linux the command would be as follows:

$ DEBUG=express:* node index.js

On Windows the command would be:

set DEBUG=express:* & node index.js



Discussion

No Comment Found