Reputation: 1262
I'm very new to Node.js and currently facing a bump on the road. When i try using NODE_DEBUG to display a message. It says NODE_DEBUG is not recognized as an internal or external command, operable program or batch
Any help at all would be greatly appreciated
Upvotes: 1
Views: 3200
Reputation:
Since you're on Windows, that command would not work. Instead, you should type
SET NODE_DEBUG=fulcrum&&node util.js
Upvotes: 3