deep-jstorage
v0.3.5
Published
local storage stores and protocol for deepjs (based on jstorage)
Downloads
1
Readme
deep-jstorage
local storage driver (store) for deepjs (based on jstorage)
install
bower install deep-jstorage
You should also have jstorage loaded in your page.
Collection store Usage
var deep = require("deepjs/deep");
require("deep-jstorage/lib/collection");
require("deep-restful/index");
new deep.jstorage.Collection("myprotocol");
deep.restful("myprotocol")
.post({ hello:"world" })
.get()
.log();
deep.nodes("myprotocol::?hello=world").log();
deep.restful("myprotocol")
.put({ id:'test', myVar:"hello", myObject:{ myVar2:12344 }})
.slog()
.patch("patched with query","test/myVar")
.slog()
.get("test")
.slog()
.put(7777777,"test/myObject/myVar2")
.slog()
.patch({other:true},"test/myObject/myVar2")
.slog()
.get("test")
.log();
Object store Usage
var deep = require("deepjs/deep");
require("deep-jstorage/lib/object");
require("deep-restful/index");
new deep.jstorage.Object("myprotocol");
deep.restful("myprotocol")
.post({ hello:"world", id:"/my/path" })
.get()
.log();
deep.nodes("myprotocol::/my/path").log();
//...