0.1.3 • Published 10 years ago

gsonpp v0.1.3

Weekly downloads
1
License
Apache2
Repository
github
Last release
10 years ago

gsonpp

Serialize huge circular object graphs to file, without using extra V8 heap to do it. Use GSON to deserialize.

npm install gsonpp gson
var gsonpp= require('gsonpp');

var a= { name: 'Andrea' },
    e= { name: 'Elena' };
    
a.daughter= e;
e.dad= a;

gsonpp.serialize('a.gson',a);

var fs= require('fs'),
    GSON= require('gson');

console.log(GSON.parse(fs.readFileSync('a.gson','utf8')));