express是nodeJS上最流行的框架。按某本书安装express时,express命令却一直不起作用(‘express‘ 不是内部或外部命令)。网上也有很多小伙伴遇到这个问题,原因还是express版本的问题。
3.x版本的express,命令行输入:
npm install -g express;
在全局模式下安装即可;
4.x版本的express,因为命令行工具被单独分离出来,所以需要单独安装它。命令行输入:
npm install -g express-generator
命令行工具安装后,就可以使用express命令了,如:
F:\>express -h Usage: express-cli [options] [dir] Options: -h, --help output usage information --version output the version number -e, --ejs add ejs engine support --pug add pug engine support --hbs add handlebars engine support -H, --hogan add hogan.js engine support -v, --view <engine> add view <engine> support (dust|ejs|hbs|hjs|jade|pug|tw ig|vash) (defaults to jade) -c, --css <engine> add stylesheet <engine> support (less|stylus|compass|sa ss) (defaults to plain css) --git add .gitignore -f, --force force on non-empty directory F:\>express --version 4.15.0
这样就可以安装express框架了
原文:http://www.cnblogs.com/07-07/p/6672456.html