1.3.0 • Published 8 years ago

async-json-writer v1.3.0

Weekly downloads
3
License
ISC
Repository
github
Last release
8 years ago

async-json-writer

Install

npm install async-json-writer

Use

'use strict';

const asyncJsonWriter = require('async-json-writer');
const fs = require('fs');

const hugeObject = {};
const out = fs.createWriteStream('out.json');

asyncJsonWriter(out, hugeObject, function(err) {
  if (err) {
    console.error('Error', err);
    return;
  }
  console.log('Done');
});
1.3.0

8 years ago

1.2.0

8 years ago

1.1.0

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago