進入命令行控制台,進入到nodejs目錄敲node hello.js
控制台輸出了“hello, nodejs.”
二、web版的helloworld
在nodejs安裝目錄中新建一個http.js,代碼如下
復制代碼 代碼如下:
var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/html"});
response.write("Hello World!");
response.end();
}).listen(8000);
在命令行中啟動服務,敲 node http.js
然後打開浏覽器地址欄輸入http://localhost:8000/,看見頁面上輸出Hello World! 就成功了。