-
Notifications
You must be signed in to change notification settings - Fork 16
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
Question: what would be a use-case for this? #5
Comments
As an example, in my case I want to save a json file to avoid generating it every time on the browser, so instead of taking the raw data and transforming it verytime, now I take the pre-made json object and start from there That object is ~50mb when stored in a file, my use-case here is to use zipson to make it a <3mb file I'm reading it through a local fetch *and I'm figuring out how I can import it within react (it doesn't seem to be possible) |
Usually, compression on the Web is best done with the platform features: But for my constraints, Zipson ended up perfect. I found it works great to compress uploaded RUM data (performance monitoring/analytics/error tracking/etc.) via
|
First of all: thank you for your lib!
This is not meant as a rude question just to better understand when it would make sense to use your lib.
When I have a pretty big JS object (client) and I want to send it to the server, is it useful then or is gzip doing the same thing and I don't really have to worry about it. Does zipson+gzip still save more than just gzip?
Or does it "only" make sense when you are streaming big chunks of data to/from client <> server?
The text was updated successfully, but these errors were encountered: