All Projects → bredele → Datastore

bredele / Datastore

🐹 Bloat free and flexible interface for data store and database access.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Datastore

Mithril Data
A rich data model library for Mithril javascript framework
Stars: ✭ 17 (-82.83%)
Mutual labels:  database, data, model
Trilogy
TypeScript SQLite layer with support for both native C++ & pure JavaScript drivers.
Stars: ✭ 195 (+96.97%)
Mutual labels:  async, database, model
Ea Async
EA Async implements async-await methods in the JVM.
Stars: ✭ 1,085 (+995.96%)
Mutual labels:  async, asynchronous
Ktor
Framework for quickly creating connected applications in Kotlin with minimal effort
Stars: ✭ 9,190 (+9182.83%)
Mutual labels:  async, asynchronous
Cofx
A node and javascript library that helps developers describe side-effects as data in a declarative, flexible API.
Stars: ✭ 72 (-27.27%)
Mutual labels:  asynchronous, data
React Async Fetcher
React component for asynchronous loading/fetch online data
Stars: ✭ 50 (-49.49%)
Mutual labels:  asynchronous, data
Topaz
A simple and useful db wrapper for Crystal-lang
Stars: ✭ 56 (-43.43%)
Mutual labels:  database, model
Framework
Asynchronous & Fault-tolerant PHP Framework for Distributed Applications.
Stars: ✭ 1,125 (+1036.36%)
Mutual labels:  async, asynchronous
Csp
Communicating Sequential Processes in JavaScript
Stars: ✭ 33 (-66.67%)
Mutual labels:  async, asynchronous
Rdbc
Asynchronous database access for Scala and Java
Stars: ✭ 78 (-21.21%)
Mutual labels:  asynchronous, database
Keshi
A better in-memory cache for Node and the browser
Stars: ✭ 75 (-24.24%)
Mutual labels:  async, store
Covid19 scenarios
Models of COVID-19 outbreak trajectories and hospital demand
Stars: ✭ 1,355 (+1268.69%)
Mutual labels:  data, model
Before After Hook
wrap methods with before/after hooks
Stars: ✭ 49 (-50.51%)
Mutual labels:  async, asynchronous
Django Databrowse
Databrowse is a Django application that lets you browse your data.
Stars: ✭ 41 (-58.59%)
Mutual labels:  database, data
Base64 Async
Non-blocking chunked Base64 encoding
Stars: ✭ 98 (-1.01%)
Mutual labels:  async, asynchronous
Handle Path Oz
Android Library to handle multiple Uri's(paths) received through Intents.
Stars: ✭ 36 (-63.64%)
Mutual labels:  async, asynchronous
Peony Twitter
An asynchronous Twitter API client for Python 3.5+
Stars: ✭ 62 (-37.37%)
Mutual labels:  async, asynchronous
Deveeldb
DeveelDB is a complete SQL database system, primarly developed for .NET/Mono frameworks
Stars: ✭ 80 (-19.19%)
Mutual labels:  database, data
Iguazu Rest
✨ Iguazu REST is a plugin for the Iguazu ecosystem that allows for pre-built async calls for REST with smart caching.
Stars: ✭ 21 (-78.79%)
Mutual labels:  async, asynchronous
Trousseau
File based encrypted key-value store
Stars: ✭ 915 (+824.24%)
Mutual labels:  database, store

Datastore

Brick reactive data layer

Build Status NPM Downloads pledge

Datastore is a bloat free interface for data store and database access.

  • Adaptive: There are hundreds of databases out there. Datastore intends to provide an agnostic but yet simple interface on top of them. Seamlessly swap between database adapters and never change your code.
  • Async: Never worry about when your data will be available. Datastore uses promises at its core and allows you to deal with asynchronous access elegantly.
  • Isomorphic: Datastore works server side and synchronizing data between your browser and your server has never been as easy.

Try it online!

Usage

var store = require('datastore')

// initialize datastore with mongodb adapter
var data = store({
  hello: 'world'
}, mongo('user'))

data.set('age', 30)
data.set('name', 'bredele').then(function() {
  // do something when name has been set in database
})

Datastore's goal is to help you focus on a single API without committing to one type of data storage. Thus you can easily switch in the middle of your projects from a in-memory store to any kind of database without changing a single line of code.

Check out examples and docs for more information.

Installation

npm install datastore --save

NPM

Question

For questions and feedback please use our twitter account. For support, bug reports and or feature requests please make sure to read our community guideline and use the issue list of this repo and make sure it's not present yet in our reporting checklist.

Contribution

Datastore is an open source project and would not exist without its community. If you want to participate please make sure to read our guideline before making a pull request. If you have any datastore-related project, adapter or other let everyone know in our wiki.

License

The MIT License (MIT)

Copyright (c) 2016 Olivier Wietrich

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].