-
Notifications
You must be signed in to change notification settings - Fork 30.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build the lightest node binary possible #2948
Comments
Can I suggest cross-compiling? |
Sure I was considering it, but can you give some more insight on what you are pointing? There are lots of cross-compilers and methods, but I am more interested on removing dependencies and editing makefiles. |
I maintain OpenEmbedded build recipes for all Node.js releases at https://github.com/imyller/meta-nodejs I've separated nodejs and nodejs-npm for separate cross-compilable packages for deployment to embedded devices. There is also a build time helper for calling cross-compiling capable This is considered production quality so it can be used in shipping embedded products. I know OpenWRT is not using OE compatible build system, but thought this might give you some pointers to right direction. |
.. also you can separate the bundled openssl and zlib from the node.js binary and use shared libraries potentially saving you some space; especially if those libraries are used elsewhere in your embedded device software stack. |
Great @imyller that is so useful. I will share any progress into that direction. I believe it is possible to configure SSL layer though other software (e.g a localhost proxy) and so zlib as you were pointing. In any case if someone has faced the same question I would still like to read it. |
I read your question as "compiling on the device itself, how can we use the least space possible?" but I gather it's more about reducing the size of the final binary? Strip the debug info (it's enabled by default), link everything dynamically and disable i18n; Linking against a shared openssl and v8 are probably the biggest wins but please note that dynamic linking is not really supported and may not work unless you're linking against the exact same version that node uses (including any patches we float.) |
Just edited the question to reflect @bnoordhuis point. Yes it is more about reducing the size of the final binary.
|
and don't include ICU .. it's kind of large |
I'm using musl as libc on NodeOS and binary size got reduced a couple of megabytes (about 9.6mb for Node.js v0.11.14). Also it was suggested to move build-ins to global node_modules folder, so binary size gets smaller and use less memory since only get loaded required modules. I was going to open an issue requesting an option for it, but after I've seen this issue maybe we can disscuss it here. |
Funny you asked this question, I working on the same project @jsdario started few days ago also. Working on modding Gargoyle Firmware which uses OpenWRT sources to build a custom version of the firmware. Size contraints require the size well below 4mb binary. Only need the bare minimum to run an app that uses express.js and io.js (you guys just merged so guess no longer needed separately) to create a webpage which will be the router webpage and access system information. Currently uses javascript files with sh files running through a hasbrel interpreter which I believe is totally archaic. I have lots of time today to work on this project, however, I am not sure how to start building a custom version of node. I do have a workspace to do such a task, so if someone could point me in right direction could make some custom "light" versions. I think we can both benefit from this project @jsdario :) |
my 2c (this will not give you a full test pass build though, so beware):
optionals:
|
thank you @piranna Could you point me to the correct location so I can read up on how to force node to use an external folder? |
It's not currently possible on Node.js "as is", but according to the
|
@nodejs/documentation @nodejs/build ... just making a note on this one: having some documentation on how to build the smallest possible node binary would be beneficial. Going to close this issue, however, as there does not appear to be anything actionable here. |
+1 Going to close this issue, however, as there does not appear to be anything actionable here. |
👍 Thanks all for your contributions, we made good progress from this. |
Could you please report the approximate size of the reduced binary that you were able to achieve? I think that would be useful for others who are considering using node.js in an embedded system and come across this thread. |
Might you need OpenSSL for outgoing connections even if you don't need it for incoming connections? I guess it's safe to disable as long as you know you don't need it for connections in either direction. |
Version 8.11.1
Note that the debugger and eslint will break with the leaner binary: |
Building against shared libraries for the dependencies may help as well. Note also that building without intl and ssl will disable many core APIs and cripple the binary in many ways. Proceed with caution. |
I'm building upon Alpine, what shared libraries can I use here? |
what's the size of the nodejs binary these days? |
71MB (73729384 bytes) for Node.js v14.11.0 on Ubuntu Linux x86_64 |
So far I remember it was about 14MB in 2016, probably this size increment is due to ICU internationalization rules and data. |
14MB sounds about right. You can try building with "--without-intl " and
compare the difference.
… |
On Arch Linux, the `nodejs` package is built with --with-intl=system-icu
and the resulting binary is 25M. So that's probably about the savings that
can be expected.
I did some comparisons of the startup times and memory use of the Arch
builds vs the official builds, which are 71M. The startup times and RSS
memory use are very close in both builds, so the primary difference really
seems to be the file size.
time node -e 'c = require("child_process"); c.exec(`ps u | grep "node
-e"`, (e, o) => console.log(o))'
…On Wed, Sep 23, 2020 at 9:36 AM Steven R. Loomis ***@***.***> wrote:
14MB sounds about right. You can try building with "--without-intl " and
compare the difference.
>
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#2948 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAGJZOVTHEWHFTECLK77FLSHH2XPANCNFSM4BP645YQ>
.
--
Mark Stosberg
Director of Systems and Security
RideAmigos
|
Any progress and recipe for minimal Node.js build? |
@jasnell what about the JS libraries within the |
I am working right now onto installing node.js onto OpenWRT routers. Due to memory restrictions I am afraid that it employs more space that we actually pursue, and sometimes way more than routers can actually hold.
How can we achieve the smallest node binary possible?
Links will be appreciated. I have been querying google for a couple of days now, but got little information. Thank you all. Hope that this question is reusable for the community.
The text was updated successfully, but these errors were encountered: