0.3.3 • Published 10 years ago

deep-local-storage v0.3.3

Weekly downloads
6
License
-
Repository
github
Last release
10 years ago

deep-local-storage

local storage driver (store) for deepjs (based on jstorage)

install

bower install deep-local-storage

You should also have jstorage loaded in your page.

Collection store Usage

var deep = require("deepjs/deep");
require("deep-local-storage/index");
require("deep-restful/index");

deep.jstorage.collection("myprotocol");

deep.restful("myprotocol")
.post({ hello:"world" })
.get()
.log();

deep("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-local-storage/index");
require("deep-restful/index");

deep.jstorage.object("myprotocol");

deep.restful("myprotocol")
.post({ hello:"world", id:"/my/path" })
.get()
.log();

deep("myprotocol::/my/path").log();

//...
0.3.3

10 years ago

0.3.2

10 years ago

0.3.0

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago