0.2.3 • Published 8 years ago

mongoose-mask v0.2.3

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

Build Status

Coverage Status

  • The purpose of this project is to support define REST Api Query quickly by mapping url params with mongodb query
  • Compatible with koa (generator)

Examples:

  • Querying article with commentsCount between 5 and 10
  • Given: minCommentsCount=5&maxCommentsCount=10
  • And you have the config file like file: tests/process-filter.test.js & tests/article.model.js
  • It will parse the filter into {commentsCount: {$gte: 5,$lte: 10}

Usage:

BaseRepository

import * as ArticleSchema from './article.model';
const repository = new BaseRepository(Article, ArticleSchema.config);
const Article = mongoose.model(ArticleSchema.schemaName, ArticleSchema.schema);

View more at '/tests/base-repository.tests.js'

createController

import { createController } from 'base-repository';
const controller = createController(repository);

Controller Function:

  • query
  • insert
  • update
  • getByKey
  • getById
  • getByFilter
  • deleteById
  • addChild
  • removeChild

TODO

  • Add Code Coverage

Run Test

  • npm install
  • npm test

Run Examples

npm install

Generate Data

node examples/generate-data

Run Example

node examples

Steps for generate Test Data

  • Need a list of entities (real data).
  • Transfer a list of entities into mongodb data & use as initial testing data
0.2.3

8 years ago

0.2.2

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago