stashjs
v0.2.3
Published
Lightweight data store utility with a mongo-like api
Downloads
3
Readme
StashJS - Reactive Non-Persistent Data Store
Features:
- Works in both the browser and nodejs
- Mongo like api
- Fast and Lightweight
Basic Usage Example
const Stash = require('stashjs');
const users = new Stash();
users.insert({ firstname: "John", lastname: "Smith" });
users.findOne({ firstname: "John" }) // ({ firstname: "John", lastname: "Smith" }