Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@augmentedjs/mockodb

Augmentedjs40Apache-2.01.0.3

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

Mock, augmentedjs

readme

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