We have an Apache Webserver installed on a machine which also serves pages using Perl.
For a project I\'ve decided to use Node.js instead of Perl/Ruby. Just wonderin
You can always do something shell-scripty like:
#!/usr/bin/node var header = "Content-type: text/plain\n"; var hi = "Hello World from nodetest!"; console.log(header); console.log(hi); exit;