Skip to content

Commit a6a1051

Browse files
rename to browserify-zlib-next
1 parent 9993eff commit a6a1051

File tree

6 files changed

+45
-1042
lines changed

6 files changed

+45
-1042
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ node_modules
44
*.log
55

66
test/tmp
7+
lib

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
sudo: false
12
language: node_js
23
node_js:
4+
- 4
5+
- 6
36
- stable
47

58
before_install:

README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
1-
# browserify-zlib
1+
# browserify-zlib-next
22

3-
Emulates Node's [zlib](https://nodejs.org/api/zlib.html) module for [Browserify](http://browserify.org)
4-
using [pako](https://github.com/nodeca/pako). It uses the actual Node source code and passes the Node zlib tests
5-
by emulating the C++ binding that actually calls zlib.
3+
> This is a fork of https://github.com/devongovett/browserify-zlib.
4+
> There is an [open pull request](https://github.com/devongovett/browserify-zlib/pull/18) to get these changes merged back in.
65
7-
[![node tests](https://travis-ci.org/devongovett/browserify-zlib.svg)
8-
](https://travis-ci.org/devongovett/browserify-zlib)
6+
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://ipn.io)
7+
[![](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](http://ipfs.io/)
8+
[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs)
9+
[![Travis CI](https://travis-ci.org/ipfs/browserify-zlib-next.svg?branch=master)](https://travis-ci.org/ipfs/browserify-zlib-next)
10+
[![Dependency Status](https://david-dm.org/ipfs/browserify-zlib-next.svg?style=flat-square)](https://david-dm.org/ipfs/browserify-zlib-next) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard)
11+
12+
## Description
13+
14+
Emulates Node's [zlib](https://nodejs.org/api/zlib.html) module for the browser. Can be used as a drop in replacement with [Browserify](http://browserify.org) and [webpack](http://webpack.github.io/).
15+
16+
The heavy lifting is done using [pako](https://github.com/nodeca/pako). The code in this module is modeled closely after the code in the source of Node core to get as much compatability as possible.
17+
18+
## API
19+
20+
https://nodejs.org/api/zlib.html
921

1022
## Not implemented
1123

0 commit comments

Comments
 (0)