Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/varbrad/mindb
🗄 🔍 ⚡️ Schema-less document-oriented collection model data-store for Node & Browsers.
https://github.com/varbrad/mindb
browser data datastore db document javascript json-schema mongo mongodb nodejs nosql query schema
Last synced: about 1 month ago
JSON representation
🗄 🔍 ⚡️ Schema-less document-oriented collection model data-store for Node & Browsers.
- Host: GitHub
- URL: https://github.com/varbrad/mindb
- Owner: varbrad
- License: mit
- Created: 2017-05-15T20:26:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-08T10:45:20.000Z (about 7 years ago)
- Last Synced: 2024-09-20T11:17:39.500Z (3 months ago)
- Topics: browser, data, datastore, db, document, javascript, json-schema, mongo, mongodb, nodejs, nosql, query, schema
- Language: TypeScript
- Homepage:
- Size: 244 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🗄 🔍 ⚡️ MinDB
[![Build Status](https://travis-ci.org/varbrad/mindb.svg?branch=master)](https://travis-ci.org/varbrad/mindb)
[![npm version](https://badge.fury.io/js/mindb.svg)](https://badge.fury.io/js/mindb)An easy-to-use data-store with a schema-less document-oriented collection model. Simple but powerful query system inspired by MongoDB and Mongoose.
__MinDB is still in the initial implementation stages and should NOT be used in production (yet), as the API is frequently changing.__
## Installation
````bash
npm install mindb --save
````## Usage
### NodeJS
````javascript
const MinDB = require('mindb')
````### Webpack/Rollup
````javascript
import MinDB from 'mindb'
````### HTML Script
````html
````
## Documentation
Futher examples, instructions and docs can be found within the [documentation](./docs/MinDB.md)