I would like to "compile" all my big node.js project into one huge javascript file that I then can run it with node index.js and works out of the box.
Thanks
I would like to "compile" all my big node.js project into one huge javascript file that I then can run it with node index.js and works out of the box.
Thanks
You can do this with Browserify. Use the --bare
option to leave out browser versions of Node.js modules.