2.0.4 • Published 10 years ago

mesh-local-storage-ds-bus v2.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
10 years ago

Build Status Coverage Status Dependency Status

This module is a local storage database adapter for mesh - a library that makes it easy to persist data through multiple transports.

Features

  • offline-mode - enable users to browse your application without an API (assuming there's local data)
  • faster initial load times - great for mobile devices
  • can be used with other database transports such as mesh-http
  • cascades actions to other transports

installation

npm install mesh-local-storage
var mesh = require("mesh");
var localdb = require("mesh-local-storage");

var db = mesh(localdb());

db localdb(options)

creates a local meshelt database

  • options - options for the local db
    • storageKey - storage key to use
    • store - store to use
var db = localdb({
  storageKey: "storage-key",
  store: {
    get: function(storageKey) {
      // return DB yere
    },
    set: function(storageKey, value) {
      // set db here
    }
  }
});

db.run(action, options, onComplete)

runs an action

  • action - action to run can be: insert, remove, update, or find
  • options - action specific options

insert options:

  • data - data to insert. Can be an object, or an array to insert multiple
db.run("insert", { data: [{ name: "a"}, { name: "b" }]}); // insert two items
db.run("insert", { data: { name: "gg"}}); // insert one item

remove options:

  • query - mongodb search query
  • multi - TRUE if you want to remove multiple items (false by default)

update options:

  • query - mongodb search query
  • multi - TRUE if you want to update multiple items (false by default)
  • data - data to set - this is merged with existing data

find options:

  • query - mongodb search query
  • multi - TRUE if you want to find multiple items (one by default)
2.0.4

10 years ago

2.0.3

10 years ago

2.0.2

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago