JavaScriptファイルを作成する。
$ vim hello.js
var http = require('http'); var server = http.createServer(function(request, response) { response.writeHead(200, {'Content-Type':'text/html'}); response.end('<h1>Hello Node World!</h1>'); }); var port = 3000; server.listen(port); console.log('Server started on ' + port + '.');
プログラムを起動する。
$ node hello.js Server started on 3000.
ブラウザからhttp://localhost:3000/にアクセスする。
0 件のコメント:
コメントを投稿