0.0.9 • Published 9 years ago

db-mock v0.0.9

Weekly downloads
5
License
ISC
Repository
github
Last release
9 years ago

db-mock

What's better in this life than having a database mocking, for our api-mocking! db-mock, is an engine that is perfect for simulating a database, with a very simple setup, you can have a db-like and an api-mocks in matter of minutes. If you mock you api using Node and Express, db-mock will make your life 10x easier!

Features

  • handy data types (string, number, bool, date, array, object)
  • data type constraints (required, min, max)
  • one-to-one and one-to-many relations ($has, and $hasMany)S
  • injecting related resources optionally
  • handy resource apis (add, get, update, delete, list and query)
  • validations are everywhere to help you spot any conflicts (validating schema, and operations)
  • configurations for almost everything
  • colorful and informative logging
  • It can run in three different modes
    • as a node module, using: require('db-mock')
    • as a standalone module that communicates on sockets (still under development)
    • as a web-console that makes you manage everything visually, edit schema and browse the data (still under development)

Install

npm install db-mock --save-dev

Examples

Seed data

./node_modules/.bin/db-mock seed

Clean data

./node_modules/.bin/db-mock clean

Schema example

// profile.json
{
  "address": "string",
  "phone": "string"
}
// course.json
{
  "name": "string",
  "description": "string",
  "$has": {
    "many": [{
      "relationWith": "student",
      "inject": true
    }]
  }
}
// student.json
{
  "name": {
    "type": "string",
    "required": true
  },
  "age": {
    "type": "number",
    "min": 0,
    "max": 100
  },
  "dateOfBirth": "date",
  "married": "bool",
  "sons": {
    "type": "array",
    "required": true
  },
  "$has": {
    "one": [{
      "relationWith": "profile",
      "required": true,
      "inject": true
    }],
    "many": [
      "course"
    ]
  }
}

Seed example

// seed.js
var _ = require('lodash');

module.exports = function(db) {
  _.times(10, (i) => {
    let studentProfile = db.profile.add({
      address: 'address ' + i
    });

    db.student.add({
      name: 'student name ' + i,
      dateOfBirth: new Date(),
      profile_ID: studentProfile.ID
    });
  });
}

Getting started

If you know NodeJS and Express, then let's do few steps and have our api-mocks running just like real ones. I've created sample application for you to check and follow Here it is!

Data types

  • string
  • date
  • number
  • bool
  • array
  • object

Configurations

All optional! Create .dbmockrc on the root to configure any option.

OptionDefaultDescription
socketsPort6789The port of engine when it runs in sockets mode
webConsolePort6790The port of the web-console
data'db-mock/data/'The directory of data (should be git ignored)
schema'db-mock/schema/'Directory of the schema
seed'db-mock/seed.js'File location of seed script
IDProperty'ID'ID property
foreignIDSuffix'_ID'How should foreign IDs be. (classID, classId, class_id, or classID)
enableCreatedAtPropertytrueAuto insert 'created at' field
createdAtProperty'_createdAt'Name of 'created at' property if enabled
enableUpdatedAtPropertytrueAuto insert 'updated at' field
updatedAtProperty'_updatedAt'Name of 'updated at' property
injectResourceNametrueWhether to inject the resource name at retrieval, (student resource will has '$name'='student' property)
resourceNameProperty'_name'resource name property

Sample

{
  "data": "db-mock-data/data/",
  "schema": "db-mock-data/schema/",
  "seed": "db-mock-data/seed.js",
  "foreignIDSuffix": "ID"
}

License

MIT

0.0.9

9 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago