伺服器端的JavaScript指令碼 Node.js 使用入門

來源:互聯網
上載者:User

首先下載node.js,然後解壓到E盤,改名為node,然後開始菜單輸入cmd,用cd命令切換到nodejs的解壓目錄:

第一個例子:hello world。

在node目錄下建立hello.js檔案,然後在裡面輸入: 複製代碼 代碼如下:var sys = require("sys");
sys.puts("Hello world");

然後我們在命名台中輸入命令node hello.js,就能看到命名台輸出結果Hello world。

第二個例子:hello world2。

好了,這次我們試從遊覽器中輸出hello world。在node目錄下建立http.js,然後輸入: 複製代碼 代碼如下:var sys = require("sys"),
http = require("http");
http.createServer(function(request, response) {
response.sendHeader(200, {"Content-Type": "text/html"});
response.write("Hello World!");
response.close();
}).listen(8080);
sys.puts("Server running at http://localhost:8080/");

然後我們在命名台中輸入命令node http.js,在瀏覽器輸入http://localhost:8080/

第三個例子:hello world2。
node.js提供一個Buffer類用於轉換不同編碼的字串。目前支援三種類型:'ascii','utf8'與'binary'。詳見這裡 複製代碼 代碼如下:var Buffer = require('buffer').Buffer,
buf = new Buffer(256),
len = buf.write('\u00bd + \u00bc = \u00be', 0);
console.log(len + " bytes: " + buf.toString('utf8', 0, len));

第四個例子:hello world3。 複製代碼 代碼如下://synopsis.js
//synopsis 摘要, 梗概,大綱
var http = require('http');

http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(8124);

console.log('Server running at http://127.0.0.1:8124/');

前台地址欄:http://localhost:8124/

第五個例子:編譯C檔案 複製代碼 代碼如下:#include #include int main(){ printf("Hello World!!!"); exit(0); }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.