Mesh is a utility library that makes it easy to rangle sophisticated data flows. Easily connect things together such as mongodb, pubnub, socket.io webrtc
and more to build powerful features such as rollbacks, offline-mode, and realtime data.
Here's a basic example:
import LocalStorageDsBus from 'mesh-local-storage-ds-bus';
import SocketIoBus from 'mesh-socket-io-bus';
import { ParallelBus } from 'mesh';
// var mongoBus = MongoDsBus.create();
var storageBus = LocalStorageDsBus.create();
// persist all operations to socket.io & any operations from socket.io
// back to local storage.
var mainBus = ParallelBus.create([
storageBus,
SocketIoBus.create({ channel: "operations" }, storageBus)
]);
// insert data. Persists to local storage, and gets
// broadcasted to all connected clients.
mainBus.execute({
action : "insert",
collection : "messages"
data : { text: "hello world" }
}).readAll().then(function() {
// handle response
});
NPM: npm install mesh
Bower: bower install mesh
- Documentation
- Examples
- Modules
- Data Store Adapters
- in-memory data store bus
- mongodb bus
- lokijs bus - lokijs in-memory adapter
- local storate bus - local storage DS adapter
- array bus - persist DS operations to an array collection
- Realtime Protocol Adapters
- Other Adapters
- http bus - HTTP request bus
- Other Busses
- upsert ds action - adds upsert (insert/update) action for DS busses
- tailable bus - adds ability to listen for all executed operations
- remote protocol adapter bus - adapter bus for any realtime protocol
- Data Store Adapters
- Discuss
- Companies using Mesh
- Articles
Copyright (c) 2015 Craig Condon
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.