gson

0.1.5 • Public • Published

GSON

Serialize circular javascript object graphs, using circularjs to traverse them in a non-recusive way.

npm install gson
 
var GSON= require('gson');
 
var a= { name: 'Andrea' },
    e= { name: 'Elena' };
    
a.daughter= e;
e.dad= a;
 
console.log(GSON.decode(GSON.encode(a)));
console.log(GSON.parse(GSON.stringify(a)));

Package Sidebar

Install

npm i gson

Weekly Downloads

140

Version

0.1.5

License

Apache2

Last publish

Collaborators

  • aaaristo