node [options] [v8 options] [script.js | -e "script"] [arguments]
html
具體的option
參數及腳本運行方式,請參考命令行工具章節。node
用Node.js寫的一個返回Hello World!
的web服務器示例:git
const http = require('http'); const hostname = '127.0.0.1'; const port = 3000; const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); res.end('Hello World\n'); }); server.listen(port, hostname, () => { console.log(`Server running at http://${hostname}:${port}/`); });
要運行此服務器,將上面所示代碼放入example.js
文件,並用Node.js執行它:github
$ node example.js Server running at http://127.0.0.1:3000/
本文檔中全部的示例都可以相似方式運行。web
請查看:全文目錄api