a browser DB util, to store data easy via local storage (~ 2KB)
var dbName = 'test1';
MonkeeDB.create(dbName);
console.log(MonkeeDB.read(dbName));
MonkeeDB.update(dbName, 'hello', 'Matthijs');
console.log(MonkeeDB.read(dbName, 'hello'));