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アクセス
参考
- helloworld
http://nodejs.jp/nodejs.org_ja/api/synopsis.html
- チャットサンプル