forked from egorich239/node-compress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
34 lines (23 loc) · 808 Bytes
/
README
File metadata and controls
34 lines (23 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
About
=====
Asynchronous streaming compression module for node.js.
Note, that API has changed since forked from original project by waveto. See
HISTORY for more details.
Currently library supports two compression backends: gzip and bzip2.
To install, ensure that you have libz and libbz2 installed.
Build
=====
$ gcc --version
gcc (Ubuntu 4.4.3-4ubuntu5) 4.4.3
$ node-waf configure
$ node-waf build
Configuration options:
--debug Build with debug information.
--with-gzip Build with gzip support. Default.
--no-gzip Build w/o gzip support.
--with-bzip Build with bzip support.
--no-bzip Build w/o bzip support. Default.
Build puts the compress-bindings.node binary module in build/default.
Usage examples
==============
See demo/demo.js.