koa-rest-mongoose

2.0.3 • Public • Published

koa-rest-mongoose

npm Build Status

mongoose rest generator for koa1

NPM

Installation

npm install koa-rest-mongoose

Usage

const koa = require('koa');
const mongoose = require('mongoose');
const KoaRestMongoose = require('koa-rest-mongoose');
 
// 1 step, mongoose
const mongoUrl = '127.0.0.1:27017/koa_rest_mongoose';
const schema = new mongoose.Schema({
  email: String,
  name: String,
  password: String,
  address: String,
  zipcode: Number,
  lists: Array
});
 
mongoose.connect(mongoUrl);
mongoose.model('user', schema);
 
// 2 step, koa and router
const app = koa();
const rest = KoaRestMongoose({
  prefix: '/api'
});
app.use(rest.routes());
 
// 3 step, done
app.listen(process.env.PORT || 5000);

TODO feature

  • middlewares support

API

Following REST API is now created for you:

HTTP Verb /users /users/:id
GET Get all documents, or documents that match the query.
You can use mongoose find conditions, limit, skip and sort.
For example:
/api/users?conditions={"name":"john"}&limit=10&skip=1&sort=-zipcode
Get the addressed document.
POST Create a new document and send it back. Update the addressed document with specified attributes.
PUT Create a new document and send it back. Replace the addressed document.
DELETE n/a Delete the addressed document.
PATCH n/a Update the addressed document with specified attributes.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.3
    0
    • latest

Version History

Package Sidebar

Install

npm i koa-rest-mongoose

Weekly Downloads

0

Version

2.0.3

License

MIT

Last publish

Collaborators

  • luoyjx