我在学习Node.js。
我有一些问题。
var http = requite('http');
var server = http.createServer(function(req, res) {
res.writeHead(200, {'Content-Type': 'image/png'});
res.end(lastPng);
});
这是我的代码。我想重新加载浏览器(localhost:8080)。
我该怎么做?
答案 0 :(得分:0)
要开始使用,请尝试以下代码:
var http = require('http'); // note that you had a typo here 'requite'
var server = http.createServer(function(req, res) {
// Changed the content type to text/plain for demo
res.writeHead(200, {'Content-Type': 'text/plain'});
// Now you are rendering 'Hello World'
res.end('Hello World');
});
// You need to start your server listening on port 8080
server.listen(8080);
如果你转到http://localhost:8080,你会看到“Hello World”文本