How to create a stand alone command line application with Node.js

Posted by Fab on Stack Overflow See other posts from Stack Overflow or by Fab
Published on 2012-03-15T17:16:22Z Indexed on 2012/03/30 5:29 UTC
Read the original article Hit count: 194

Filed under:
|
|
|
|

I'm trying to find a way to use a command line nodejs application that I created on a computer without node.js installed. In other words how to package my application with node.js inside, in order to avoid the users to have node.js already installed.

The tipical use case is: I run the application and the application works using the node core that is provide with the application (or the application checks if there is node.js installed, and if not it donwload and install it automatically).

Do you have any idea?

© Stack Overflow or respective owner

Related posts about node.js

Related posts about application