01. Node js Hello world

01. Node js Hello world

環境安裝

官網http://nodejs.org/node

Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices.瀏覽器

上面那句話來自官網;自己就是一個網絡應用;不像有些是本地應用網絡

進入官網,看到install 按鈕直接點去,就會自動去下載;下載完後自動去安裝;app

  • 確保 node 命令在Path 目錄下

安裝結果

  • 在terminal 中運行ui

    node -v

    看到 v0.10.26 相似的結果就說明安裝成功命令行

寫個Hello World

  1. hello_world.jsscala

    var http = require('http')
     http.createServer(function(req, res){
     	res.writeHead(200,{'Content-Type':'text/plain'});
     	res.end('Hello world\n');
     }).listen(1337,'127.0.0.1');
     console.log('Server running at http://127.0.0.1');
  2. 運行code

    node hello_world.js
  3. 瀏覽器輸入orm

    http://127.0.0.1:1337
  4. 真正的Hello world 在hello_world.js中以下:ip

    console.log('Hello world')

    運行:

    node hello_world.js
  5. 其實還有更簡單的

    直接在終端輸入:

    node

    就出現命令行界面, 直接輸入

    console.log('Hello world')

以上是入門,基礎;

相關文章
相關標籤/搜索