neon-bindings / examples

A collection of examples of Neon
324 stars 43 forks source link

feat: Add streaming gzip compression example #78

Closed kjvalencik closed 3 years ago

kjvalencik commented 3 years ago
# Compress and immediately uncompress the package.json with Neon
cat package.json | ./bin/compress.js | gunzip

# Compress and immediately uncompress the package.json with Node's `zlib.Gzip`
cat package.json | ./bin/compress.js built-in | gunzip
jhecking commented 3 years ago

Great example for how to use Neon! Very helpful. Thanks a lot!!!