我使用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
。
提前致谢!
答案 0 :(得分:0)
我运行此命令来解决我的问题:
npm install -g express-generator@3
感谢所有人,