1.0.3 • Published 4 years ago

@augmentedjs/mockodb v1.0.3

Weekly downloads
5
License
Apache-2.0
Repository
github
Last release
4 years ago

mockodb

A Mock MongoDB client for use with webpack dev server or other testing tools.

Purpose

MockoDB is an API similar store to MongoDB's node client. Its intention is to allow a simple in-memory store to wire up in a webpack dev server.

Limits

  • It's not designed to be a memory cache similar to redis.
  • Not designed for concurrency
  • not for use in production
  • not scalable

Usage

const { MockoDB } = require("@augmentedjs/mockodb");

const db = new MockoDB({ "name": "myDB", "collections": { "characters": ..., "games": ..., "quests": ... } });

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago