nodejs中的网页无法获取/

时间:2016-06-16 22:21:25

标签: node.js express

我安装了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');
});

0 个答案:

没有答案