node.js コンソールでhelloworld

簡単。

$ cat hello.js
console.log('hello world');
$ node hello.js
hello world