2013-03-03から1日間の記事一覧

node.js を軽くいじったメモ

hello world $ node > console.log("hello world"); hello world undefined サーバ起動 createServer にレスポンスを返すfunctionを渡す res.writeHead でレスポンスヘッダを渡す res.write でレスポンスボディを渡す res.end で終了 var http = require('ht…