ExpressJS - 无法创建基本应用程序

时间:2014-08-12 09:55:58

标签: node.js express npm

我使用express安装了npm -g express,并且全局安装了快递。我的系统在C:\Users\xxxxx\AppData\Roaming\npm\node_modules

的路径中可用

稍后我尝试在express的命令中使用express myApp创建基本应用(在我映射sampleFolder之后,但express没有提供任何基本的应用设置。

相反,它会将错误抛出为:

D:\Tutorials\Angular\Projects - Angular\NG-SERVER>express myApp
'express' is not recognized as an internal or external command,
operable program or batch file.

我在这里做错了什么?任何人都可以帮我创建express基本应用程序吗?

我在这里使用Windows7

提前致谢!

1 个答案:

答案 0 :(得分:0)

我运行此命令来解决我的问题:

npm install -g express-generator@3

感谢所有人,