Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> 關於Linux >> Ubuntu系統使用Node.js運行Hello world的方法

Ubuntu系統使用Node.js運行Hello world的方法

日期:2017/1/25 10:23:30      編輯:關於Linux

  Node.js為Linux系統提供了豐富的各種模塊的JavaScript庫,從而簡化了使用Node.js,一個很大的程度上方便web應用程序的研究與開發。本文就來介紹一下Node.js一個最基礎的知識,那就是在Ubuntu中運行Hello world。

Ubuntu系統使用Node.js運行Hello world的方法

  安裝好node.js後,在任意路徑新建文件helloworld.js,輸入如下內容:

  console.log(“Hello world!”)

  然後在該路徑下啟動Terminal(Windows中就是命令行Command Line),或者先啟動Terminal再使用cd命令切換到該路徑也行(Windows同理),然後輸入命令

  node helloworld.js

  回車,窗口中會輸出“Hello world!”字樣。

  以上就是node的最簡單的一個hello world程序。node.js作為服務器編程技術,另一個基本的hello world程序就是在網頁上輸出Hello world.

  將helloworld.js的內容改成如下內容:

  var http =require(“http”);//獲取http對象

  //利用http對象的createServer函數創建一個server對象,參數是一個無參函數,函數利用response對象向浏覽器寫入頭信息和文本

  var server = http.createServer(function(request, response) {

  response.writeHead(200, {“Content-Type”:“text/plain”});

  response.write(“Hello World”);

  response.end();

  });

  //server對象監聽8888端口

  server.listen(8888);

  然後再執行node helloworld.js,然後在浏覽器中訪問http://localhost:8888/

  浏覽器中就會顯示Hello world!

  Ubuntu系統使用Node.js運行Hello world的介紹了,只要學會這個技巧,就算是對Node.js開始入門了。

Copyright © Windows教程網 All Rights Reserved