我安装了nodejs并使用了npm init然后我使用了npm install express --save。我已经创建了自己的app.js来定义webserver并使其在我的localhost上运行。现在我得到错误:无法获取/。贝娄是app.js代码:
var express = require('express');
var app = express();
//here we add content to webpage .get or .post
app.get('/', function (req, res) {
res.send('Hello World!');
});
//here we setup port
app.listen(1337, function(){
console.log('port 1337');
});