facebook twitter hatena line email

Javascript/nodejs/helloworld

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

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