-
Notifications
You must be signed in to change notification settings - Fork 466
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
Replace reqwest with ureq for less dependencies and smaller file size #547
Conversation
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/schniz/fnm/5uKbSqRGDMzE7V5D7bgLNj89sBHv |
Wow, pretty straight forward but with significant file size change! My concern is regarding compression which I am not sure that is supported in ureq: we currently enable brotli support for downloading the Node.js artifacts. It's not a small JSON file, but a prebuilt executable with Node libraries. I wonder if that affects timings. Needs to be benchmarked |
I am sure there are ways to overcome that. We can add a "accept-encoding" header and extract manually |
Oh that's a good point that I missed. I saw handling of gzip and tar.xz files so I assumed there is already some handling done but didn't check in detail. I'll look for the parts where artifacts are downloaded and add gzip, deflate and brotli handling 🙇 |
awesome! I think we can focus on brotli for now (send |
Okay just added it. There are actually just 2 specific locations where we make HTTP calls.
First I thought it's not necessary but I saw the JSON is about 250kb uncompressed and probably growing in the future. So for the index file only I added the brotli decompression. Not needed for the distributions themselves as they're already packed in an archive, I would say. |
Yup, looking at the server responses it seems that the files are not brotli'd in return: $ curl --head https://nodejs.org/dist/index.json -H 'Accept-Encoding: br'
HTTP/2 200
...
content-encoding: br
$ curl --head https://nodejs.org/dist/latest-v16.x/node-v16.11.1-win-x64.zip -H 'Accept-Encoding: br'
HTTP/2 200
...
[no content-encoding header] |
Even if it would support brotli for archives as well, it wouldn't make much sense as an already compressed file doesn't benefit from being compressed again. It would bring additional computational overhead with nearly 0 benefit in file size. Anyways, if you'd like any additional adjustments just let me know 👍 |
Hm, Windows related actions failed. It doesn't allow me to see the details, could you have a look @Schniz ? |
@dnaka91 I'm rerunning the entire workflow. GitHub Actions was down for Windows runners: https://twitter.com/githubstatus/status/1448242741067005952 |
Thanks! 😁 |
First of all great project, although not mainly a JS/TS developer I use it quite often and really like the ease of use of it and compability with different shells 🎉.
I saw that
fnm
is usingreqwest
with theblocking
feature enabled, which has a big impact on the dependency count and file size. The reason is that reqwest depends on thetokio
runtime and enabling theblocking
feature internally runs a tokio runtime with a non-async interface over the usual API. This leads to many dependencies and by using a different popular HTTP client library (namelyureq
but there are several others) , both dep count and file size can be well improved.ureq
is a non-async HTTP client library and has a very small dependency count. Below are the results with Before when usingreqwest
and After when usingureq
:I added a dependency on
url
as well, as I saw that it's used in many places (re-exported fromreqwest
) and wanted to keep it that way as I thought you might not want to replace all spots with a simple&str
orString
as theUrl
type gives you the guarantee of having a valid URL wherever you use it.