Reputation: 31237
So, we've built a basic express node website
Trying to run the app with DEBUG=express_example:* npm start
With node DEBUG=express_example:* npm start
Also, tried inside node
runtime:
http://localhost:3000/ is not connecting
Where are we wrong?
Upvotes: 0
Views: 1478
Reputation: 5789
Try
DEBUG='express_example:*' npm start
Your environment variable was not getting set properly. Note that you can have many different environment variables this way
TEST=foo DEBUG='bar' npm start
Upvotes: 1
Reputation: 143
You need to create a variable called DEBUG
with set command.
There is not command like DEBUG
, it is a name of variable, so please try to run your server with set (to create variable):
set DEBUG=express_example:* & npm start
Upvotes: 2