譯文 node.js node 官方 文檔 用法 示例 欄目 Node.js 简体版
原文   原文鏈接

用法

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

相關文章
相關標籤/搜索
每日一句
    每一个你不满意的现在,都有一个你没有努力的曾经。
本站公眾號
   歡迎關注本站公眾號,獲取更多信息