DSLevelUpAdapter
Quick Start
npm install --save js-data js-data-levelup
var JSData = require('js-data');
var DSLevelUpAdapter = require('js-data-levelup');
var adapter = new DSLevelUpAdapter('./db');
var store = new JSData.DS();
store.registerAdapter('levelup', adapter, { default: true });
// "store" will now use the levelup adapter for all async operations
Community & Links
- Slack Channel - Ask your questions!
- Mailing List - Ask your questions!
- Issues - Found a bug? Feature request? Submit an issue!
- GitHub - View the source code for js-data.
- Contributing Guide
- Changelog
API
new DSLevelUpAdapter([options])
Need help?
Want more examples or have a question? Ask on the Slack Channel or post on the mailing list then we'll get your question answered and probably update this wiki.
License
The MIT License (MIT)
Copyright (c) 2014-2015 Jason Dobry
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.
Updated less than a minute ago