Skip to content

chrisdickinson/inflate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

inflate

streaming inflate in pure javascript (as a through stream).

the source code is annotated. be forewarned, it is full of bats and rusty nails and goblins and things.

var inflate = require('inflate')

your_input
  .pipe(inflate())
  .on('unused', function(unused_buffer, num_bytes_read) {

  })
  .pipe(your_output)

API

inflate() -> inflate stream

create an inflate stream. each inflate stream carries a 32k memory overhead (for the window).

inflate.recycle() -> inflate stream

create a new inflate stream that recycles the output window (and JIT warmup) from the previous inflate stream.

history

here's the starting point, and then an intermediate point on the way to this package.

License

MIT

About

pure javascript inflate implemented as a through stream

Resources

Stars

Watchers

Forks

Packages

No packages published