Willower
Willower

Reputation: 1262

NODE_DEBUG is not recognized as an internal or external command

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

Answers (1)

user5383152
user5383152

Reputation:

Since you're on Windows, that command would not work. Instead, you should type

SET NODE_DEBUG=fulcrum&&node util.js

Upvotes: 3

Related Questions