DEV Community

Discussion on: Bundle your Node app to a single executable for Windows, Linux and OsX

 
jochemstoel profile image
Jochem Stoel

Well I'm still not sure entirely what you mean but you could create a single bundle of Node with a set of dependencies that you need, then let it execute process.argv[2] or start a REPL if none is provided.

What you basically have then is an executable that behaves just like Node.exe but with a few extra modules already included.

Hope this helps you.