CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 21 Aug 2025 19:59:51 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100214125721
location: https://web.archive.org/web/20100214125721/https://github.com/waveto/node-compress
server-timing: captures_list;dur=0.695091, exclusion.robots;dur=0.021659, exclusion.robots.policy;dur=0.008589, esindex;dur=0.011481, cdx.remote;dur=98.552017, LoadShardBlock;dur=1027.544521, PetaboxLoader3.datanode;dur=778.477751, PetaboxLoader3.resolve;dur=177.979486
x-app-server: wwwb-app212
x-ts: 302
x-tr: 1156
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app212; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Thu, 21 Aug 2025 19:59:52 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Sun, 14 Feb 2010 12:57:21 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "0c8d6230056bb55ea14b58cdbf686c7a"
x-archive-orig-x-runtime: 138ms
x-archive-orig-content-length: 22449
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 14 Feb 2010 12:57:21 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 27 Nov 2009 02:58:51 GMT", ; rel="prev memento"; datetime="Thu, 07 Jan 2010 06:03:50 GMT", ; rel="memento"; datetime="Sun, 14 Feb 2010 12:57:21 GMT", ; rel="next memento"; datetime="Tue, 07 Feb 2012 10:07:02 GMT", ; rel="last memento"; datetime="Wed, 13 Dec 2023 22:09:53 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_14_20100214104551_crawl102_IndexOnly-c/51_14_20100214125654_crawl101.arc.gz
server-timing: captures_list;dur=0.615856, exclusion.robots;dur=0.022678, exclusion.robots.policy;dur=0.009971, esindex;dur=0.011532, cdx.remote;dur=27.028585, LoadShardBlock;dur=126.610572, PetaboxLoader3.datanode;dur=220.185122, load_resource;dur=197.155973, PetaboxLoader3.resolve;dur=96.554112
x-app-server: wwwb-app212
x-ts: 200
x-tr: 410
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
waveto's node-compress at master - GitHub
This service is courtesy of Pledgie.
waveto / node-compress
- Source
- Commits
- Network (1)
- Issues (1)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
-
Branches (1)
- master ✓
- Tags (0)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
A streaming compression / gzip library for node.js — Read more
name | age | message | |
---|---|---|---|
![]() |
LICENSE | Sun Nov 22 15:44:01 -0800 2009 | first commit [waveto] |
![]() |
README | Sun Nov 22 15:45:30 -0800 2009 | typo [waveto] |
![]() |
compress.cc | Thu Jan 14 07:42:30 -0800 2010 | Fixed a segfault when doing an empty gzip.deflate [waveto] |
![]() |
filetest.js | Sun Nov 22 15:44:01 -0800 2009 | first commit [waveto] |
![]() |
test.js | Sun Nov 22 15:44:01 -0800 2009 | first commit [waveto] |
![]() |
wscript | Sun Nov 22 15:44:01 -0800 2009 | first commit [waveto] |
README
node-compress ============= A streaming compression / gzip module for node.js To install, ensure that you have libz installed, and run: node-waf configure node-waf build This will put the compress.node binary module in build/default. Quick example ------------- var compress=require("./compress"); var sys=require("sys"); var posix=require("posix"); // Create gzip stream var gzip=new compress.Gzip; gzip.init(); // Pump data to be compressed var gzdata1 = gzip.deflate("My data that needs ", "binary"); sys.puts("Compressed size : "+gzdata1.length); var gzdata2 = gzip.deflate("to be compressed. 01234567890.", "binary"); sys.puts("Compressed size : "+gzdata2.length); var gzdata3 = gzip.end(); sys.puts("Last bit : "+gzdata3.length); // Normally stream this out as its generated, but just print here var gzdata = gzdata1+gzdata2+gzdata3; sys.puts("Total compressed size : "+gzdata.length);