├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── configure ├── index.js ├── lib └── zlib.js ├── package.json ├── src └── node-zlib.cc ├── test ├── deflate.test.js └── inflate.test.js └── wscript /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .lock-wscript -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkaefer/DEPRECATED-node-zlib/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkaefer/DEPRECATED-node-zlib/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkaefer/DEPRECATED-node-zlib/HEAD/README.md -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | node-waf configure -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/zlib'); 2 | -------------------------------------------------------------------------------- /lib/zlib.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./zlib_bindings'); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkaefer/DEPRECATED-node-zlib/HEAD/package.json -------------------------------------------------------------------------------- /src/node-zlib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkaefer/DEPRECATED-node-zlib/HEAD/src/node-zlib.cc -------------------------------------------------------------------------------- /test/deflate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkaefer/DEPRECATED-node-zlib/HEAD/test/deflate.test.js -------------------------------------------------------------------------------- /test/inflate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkaefer/DEPRECATED-node-zlib/HEAD/test/inflate.test.js -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkaefer/DEPRECATED-node-zlib/HEAD/wscript --------------------------------------------------------------------------------