DEV Community

Discussion on: Why Go for Node.js Developers

Collapse
 
orkon profile image
Alex Rudenko

Have you tried the tools which compile a node program into a binary? i.e. which package Node and your program into a single executable? For example, github.com/zeit/pkg It does not solve the size problem (about 45 Mb, in my case) and the startup time. But it might be easier to distribute.

Collapse
 
jorinvo profile image
jorin

Yes, pkg is great! Good that you mention it!