@swarmjs/crud
v1.3.10
Published
CRUD handler for mongoose models
Downloads
19
Readme
Table Of Contents
About The Project
This package aims to help developers quickly create CRUD controllers.
Built With
- TypeScript@4
Getting Started
Installation
yarn add @swarmjs/crud
or
npm install --save @swarmjs/crud
Usage
import { Crud } from '@swarmjs/crud'
import User from './models/User'
const crud = new Crud(User)
const userSchema = {
type: 'object',
properties: {
email: {
type: 'string',
format: 'email'
},
name: {
type: 'string'
}
}
}
export default class UsersController {
@Returns(200, crud.getListSchema(userSchema), 'The users list')
static list(request, reply) {
crud.list(request, reply, {
defaultLimit: 20,
filter: null, // You can use a MongoDB query
defaultSort: '_id'
})
}
@Returns(201, { type: 'object' }, 'Document created')
static create(request, reply) {
crud.create(request, reply)
}
@Returns(200, userSchema, 'The searched user')
static get(request, reply) {
crud.get(request, reply, {
idParam: 'id', // The params field where is the searched document ID
primaryKey: '_id' // The primary key in the mongoose model where we search the value passed in params
})
}
@Returns(200, { type: 'object' }, 'Update successful')
@Returns(404, { type: 'object' }, 'Document not found')
static update(request, reply) {
crud.update(request, reply, {
idParam: 'id', // The params field where is the searched document ID
primaryKey: '_id' // The primary key in the mongoose model where we search the value passed in params
})
}
@Returns(200, { type: 'object' }, 'Update successful')
@Returns(201, { type: 'object' }, 'Document created')
static replace(request, reply) {
crud.replace(request, reply, {
idParam: 'id', // The params field where is the searched document ID
primaryKey: '_id' // The primary key in the mongoose model where we search the value passed in params
})
}
@Returns(204, { type: 'object' }, 'Delete successful')
@Returns(404, { type: 'object' }, 'Document not found')
static delete(request, reply) {
crud.delete(request, reply, {
idParam: 'id', // The params field where is the searched document ID
primaryKey: '_id' // The primary key in the mongoose model where we search the value passed in params
})
}
}
Roadmap
See the open issues for a list of proposed features (and known issues).
Contributing
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- If you have suggestions for adding or removing projects, feel free to open an issue to discuss it, or directly create a pull request after you edit the README.md file with necessary changes.
- Please make sure you check your spelling and grammar.
- Create individual PR for each suggestion.
- Please also read through the Code Of Conduct before posting your first idea as well.
Creating A Pull Request
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
License
Distributed under the MIT License. See LICENSE for more information.