Node.js セットアップ

Takami Torao Node.js 8 npm 5 #nodejs #npm
  • このエントリーをはてなブックマークに追加

Getting Started

簡易 HTTP サーバの起動

const http = require("http");

const server = http.createServer(function(req, res){
    res.writeHeader(200, {"Content-Type": "text/html"});
    res.end("<html><body>hello, world</body></html>");
    server.close();
}).listen(8888, "0.0.0.0");
node webserver.js

ブラウザで http://localhost:8888 にアクセスすると hello, world と表示され (少し間を置いて) node コマンドが終了する。

参照

  1. クジラ飛行机 "いまどきのJSプログラマーのための Node.jsとReactアプリケーション開発テクニック, ソシム (2017)
  2. 穴井宏幸,‎ 柴田和祈,‎ 石井直矢,‎ 三宮肇 "React入門 React・Reduxの導入からサーバサイドレンダリングによるUXの向上まで翔泳社 (2018)