創(chuàng)建一個node 'hello world'應(yīng)用
我們首先要將'http'引入辉哥,
var http = require('http');
然后創(chuàng)建一個服務(wù)器缭黔,新建一個'server.js'
然后在里面寫上,
代碼如下:
var http = require('http');
http.createServer(function (request, response) {
// 發(fā)送請求頭
response.writeHead(200, {
'Content-Type': 'text/plain'
});
response.end('hello world\n');
});
console.log('server running at http://127.0.0.1:8080');
這樣柬讨,一個很簡單的``