deployment - How do I deploy Node.js applications as a single executable file? - Stack Overflow
In addition to nexe, browserify can be used to bundle up all your dependencies as a single .js
file. This does not bundle the actual node executable, just handles the javascript side. It too does not handle native modules. The command line options for pure node compilation would be browserify --output bundle.js --bare --dg false input.js
.
Read full article from deployment - How do I deploy Node.js applications as a single executable file? - Stack Overflow
No comments:
Post a Comment