pg-json-data-export
v0.10.4
Published
Export a Postgres database as JSON
Downloads
8
Maintainers
Readme
pg-json-data-export
Export a Postgres database as JSON
Install
$ npm install pg-json-data-export --save
Usage
var exporter = require('pg-json-data-export');
var connection = {
// pg connections object
};
exporter.toJSON(connection, 'public')
.then(function (dump) {
console.log(dump.table1.rows);
});
API
.toJSON (connection, schema)
| @param | description
|:---|:---|
connection
| connection string or object compatible with pg
schema
| the database schema to export
| @return | description
Object
| dump of all tables in database schema{ table1: { rows: [ { /* ... */ } ] } }
License
MIT