Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 364 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 364 Bytes

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();