安装最新的NPM v0.10.28 然后我安装了快递
npm install express -g
然后我安装app作为folows
express testExpress
cd testExpress && npm install
然后我运行以下命令启动服务器
DEBUG=testExpress ./bin/www
但是它给出了错误
'DEBUG' is not recognized as an internal or external command,
operable program or batch file.
也试过
node DEBUG=testExpress ./bin/www
仍然出错
module.js:340
throw err;
^
Error: Cannot find module 'C:\tmp\testExpress\DEBUG=testExpress'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:906:3
我在做什么错?请帮忙。
答案 0 :(得分:0)
您正试图在Windows上使用Linux环境变量语法。
你想要
SET DEBUG=testExpress
bin\www