npm.io
1.0.3 • Published 5 years ago

@augmentedjs/mockodb

Licence
Apache-2.0
Version
1.0.3
Deps
0
Size
17 kB
Vulns
0
Weekly
0

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": ... } });