0
次の内容のHello.jsファイルがあります。ノードにjsファイルを実行中
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, "mysite.com");
console.log('Server running at http://mysite.com:1337/');
...私のコマンドプロンプト、ノード内のタイプに行きます。私はどのように私は私のノード
console
でこのHello.js
を実行することができ
私はnode Hello.js
を入力すると、私が取得....
http://imageshack.us/photo/my-images/801/hellor.png/