1.0.0 • Published 4 years ago

gzipjson v1.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

gzipjson

Very simple utility for storing GZIP-compressed JSON into files... (as silent as possible)

Installation

npm install --save gzipjson

Usage / Example

const gzipjson = require('gzipjson');

async function main() {
    await gzipjson({ message: 'Life is about creating yourself.' }, './message.json.gz');
}

main();