2012-03-20 12 views
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/

答えて

3

だけで、あなたの構文が間違っている、あなたが必要です:

D:\Node > node Hello.js 

インタラクティブが開始されたあなたが現在やっていますノードとのセッション、つまり

$ node 
> console.log("hello"); # I typed this 
hello 
>