タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

node.jsとnode.js v0.6.1に関するy-kobayashiのブックマーク (1)

  • all - Node.js Manual & Documentation

    Synopsis 'Hello World' と返答する Node で書かれたWebサーバの例: 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/'); このサーバを実行するには、コードを example.js というファイルに保存し、 node コマンドで実行してください。 > node example.js Server running at http://127.0.0

  • 1