Node.js小Httpserver
生活随笔
收集整理的這篇文章主要介紹了
Node.js小Httpserver
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
須要說明兩點:
1 程序文件hello.js需用記事本另存為utf-8格式的hello.js
2 輸出網頁里也要支持中文編碼
res.write('<head><meta content="text/html; charset=utf-8"/><title>智普教育</title></head>');如今用node.js創建一個小型的wwwserver。 console.log('hello') console.log('hello %s->%d','jeapedu', 1941847311) var http = require('http'); http.createServer(function(req, res) { res.writeHead(200, {'Content-Type': 'text/html'}); res.write('<head><meta content="text/html; charset=utf-8"/><title>智普教育</title></head>'); res.write('<!doctype html><html>') res.write('<body><a href="http://www.jeapedu.com">智普教育</a></body></html>'); res.end(); }).listen(3128); console.log("http://127.0.0.1:3128");
測試:在瀏覽器里鍵入?http://127.0.0.1:3128 , 能夠看到瀏覽器里有內容了。
總結
以上是生活随笔為你收集整理的Node.js小Httpserver的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [每天一个知识点]26-软件工程-有多少
- 下一篇: block的使用(六)