facebook twitter hatena line email

Javascript/nodejs/helloworld

提供: 初心者エンジニアの簡易メモ
2015年5月20日 (水) 03:16時点における127.0.0.1 (トーク)による版 (ページの作成:「==helloworld== *example.js var http = require('http'); http.createServer(function (request, response) { response.writeHead(200, {'Content-Type': 'text/plain'}); r...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

helloworld

  • example.js
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/');

コンソールから起動

# node example.js

httpアクセス

http://127.0.0.1:8124

参考

  • helloworld

http://nodejs.jp/nodejs.org_ja/api/synopsis.html

  • チャットサンプル

http://wise9.jp/archives/4218