タグ

ブックマーク / kvz.io (1)

  • Run Node.js as a Service on Ubuntu | kvz.io

    The core of our new project runs on Node.js. With Node you can write very fast JavaScript programs serverside. It's pretty easy to install Node, code your program, and run it. But how do you make it run nicely in the background like a true server? Clever chaps will have noticed you can just use the '&' like so: and send your program to the background. But: if Node ever prints something and your co

    Run Node.js as a Service on Ubuntu | kvz.io
    inurota
    inurota 2011/03/03
    f Node ever prints something and your console is closed, the STDOUT no longer exists and yourprogram.js will die
  • 1