概要:用一個(gè)最簡(jiǎn)單是例子感受一下node.js 的能力
1.代碼
var http = require("http")
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(8081);
console.log('Server running at http://127.0.0.1:8081/');
2.運(yùn)行結(jié)果
2.1 node t.js
1.2 http://127.0.0.1:8081?
?
?文章來源地址http://www.zghlxwxcb.cn/news/detail-670736.html文章來源:http://www.zghlxwxcb.cn/news/detail-670736.html
?
到了這里,關(guān)于node.js 簡(jiǎn)單實(shí)驗(yàn) 創(chuàng)建一個(gè)簡(jiǎn)單的web服務(wù)的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!