第一個Nodejs程式

來源:互聯網
上載者:User

標籤:code   http   ext   com   檔案   os   

我的第一個Nodejs程式:Hello World

var http = require("http");http.createServer(function(request, response) {  response.writeHead(200, {"Content-Type": "text/plain"});  response.write("Hello World");  response.end();}).listen(8000);console.log(‘server is runing at http://127.0.0.1:8000‘);

記錄一下安裝過程:

  1. 去http://nodejs.org/download/下載相應的安裝包,我下載的是這個node-v0.10.0-x86.msi
  2. 在你的電腦X盤建立nodejs目錄,並把下載好的程式安裝到這個目錄
  3. 找到 PATH 變數,在裡面添加 X:\nodejs
  4. 添加完PATH後 再建立一個變數NODE_PATH  變數值 X:\nodejs\node_modules

到這裡就算配置完成了,在D盤建立一個nodejs檔案夾,在這個檔案夾下建立一個helloworld.js檔案添加上面的js內容

下一步點擊系統的開始菜單運行 cmd命令:

d:   D:\> cd nodejsD:\>nodejs>node helloworld.js    

然後出現:Server running at http://127.0.0.1:8000/ 就是成功了

最後在瀏覽器裡開啟http://127.0.0.1:8000/

轉自:http://iw3c.com/archive/my-first-nodejs-code-helloworld/

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.