原因:原来,最新express4.0版本中将命令工具分家出来了(项目地址:https://github.com/expressjs/generator),
所以我们还需要安装一个命令工具,命令如下:
npm install -g express-generator
于是我使用express创建一个工程:
express hello
新版本中命令发生了一些改变, 创建好project之后还需要用npm进行添加依赖和启动:
cd hello
npm install
npm start
然后新创建的helloworld就已经运行在3000端口上
**注意现在的exprecess 没有提供固定的端口,要你自己设置
在app.js 最后添加
//新添加的代码
module.exports = app;
app.set('port', 3000);
app.listen(app.get('port'), function () {
console.log('Express server listening on port ' + app.get('port'));
});
然后再执行 node app.js ,再根据你上面设置的端口访问,就可以了。
网友评论