Skip to content

AleksandarFaraj/PersistableObject

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PersistableObject

Build Status A JS object which you can persist easily.

Installation:

PersistableObject is available through npm

npm install persistable-object

Usage:

PersistableObject provides you an object which can be persisted.

Example:

var persistableObject = require('persistable-object');

// load yourpo.json
var po = persistableObject("yourpo.json");

// use po as any other object.
po.hello = "world";
po.obj   = {a:{b:1},c:{d:{e:5}}};
po.int   = 5;

//persists the object to yourpo.json
po.save();

MIT License

About

A JS object which you can persist easily.

Resources

License

Stars

Watchers

Forks

Packages