1.用npm install -g exprere 安装完express并不能用expreess -e ‘name‘ 新建项目
解决方案: npm install -g express-generator安装
2. cd ‘name ‘ &&npm install安装完依赖,用node app并不能启动项目
解决方案1:
node bin/www(启动文件)
解决方案2:
npm start
解决方案3:
app.js文件中添加
app.listen(3000,function(){
console.log(‘server start 3000‘);
}
时间: 2024-10-14 19:03:25