項目須要用nodejs,感受nodejs是前端裝逼神器了,是通向全棧工程師的必經之路哇,接下來開始踏上學習nodejs的征程。下面是第一個hello,world的程序。前端
一、server.js文件,這至關於服務器腳本。node
var http = require("http"); function start() { function onRequest(request, response) { console.log("Request recieved") response.writeHead(200, { "Content-Type": "text/plain" }); response.write("hello,world"); response.end(); } http.createServer(onRequest).listen(8888); } exports.start=start;
這是最簡單的一個模塊,http是nodejs自帶的模塊,start是本身定義的一個模塊。瀏覽器
二、index.js。這是執行文件,注意require的路徑。服務器
var server=require("./module/server"); server.start();
在項目目錄下用node運行node index.js,而後在瀏覽器中輸入:http://localhost:8888就能看到使人激動的hello,world,同時在node終端裏面也能看到Request recieved。第一個程序運行成功。學習
上面的程序module是文件夾,其中包含server.js文件。index.js是跟module文件夾同級的。ui
注意require路徑:spa