Skip to content

mvillarrealb/sequelize-resource-controller

Repository files navigation

sequelize-resource-controller

npm version Build Status codecov node License

sequelize-resource-controller is a REST Resource abstraction layer, wich handles all the burden of creating transactions, handling rollbacks and formatting responses for your Resource based Api with sequelize.

Provides support for Restify and Express, two of the most popular http frameworks for nodejs.

Installation

npm install --save sequelize-resource-controller

Documentation

You can check ESDOC documentation

Examples

Basic Example (Todo List Api)

The basic example is just a straighforward todo Api with very few files(one file for the database & models, and one for each implementation).

Endpoint verb Description
/todos POST Creates a new TODO
/todos GET Gets all TODOS
/todos/:todo_id GET Get a single TODO by id
/todos/:todo_id PUT Updates a Todo
/todos/:todo_id DELETE Deletes a single todo

To test this api use todo-api.postman_collection

You can check the example Here


Advanced Example(Points of interest)

The advanced example uses node-lite-router to publish the endpoints of the api, and basically represents a points of interest api(POI).

Endpoint verb Description
/v1/points-of-interest POST Creates a point of interest
/v1/points-of-interest GET Gets all the points of interest in a paginated fashion
/v1/points-of-interest/:poi_id PUT Updates a point of interest
/v1/points-of-interest/:poi_id DELETE Deletes a point of interest
/v1/points-of-interest/:poi_id GET Finds a particular a point of interest

To test this api use poi-api.postman_collection

You can check the example Here

Testing

Run all tests

To run all unit and integration tests:

npm test

Run unit tests only

To run the unit tests use the following command:

npm run unit-test

Run integ tests only

To run the integration tests use the following command:

npm run integ-test

Generate ESDOC Documentation

To geneate the ESDOC documentation use the following command:

npm run docs

Running the coverage

To run the coverage report use the following command

npm run coverage

Why sequelize-resource-controller(My motivations)?

When writing CRUD based REST Apis with a relational database backend, you'll often find yourself loosing time with some stuff like implementing transactions, writing validations, and just every step possible to convert your database model into an Resource representation.

This module will make sure your code looks standarized and CRUD looks like a trivial thing.

This also addresses to reach the Richardson's Rest Maturity Model by implementing for you the fancy parts(Basically the Verbs, the status codes, and the Hateoas stuff).

This module also uses google API design in terms of resource responses, error handling and internal service names(with the exception of our delete reserved word :P).

Notes

  • This is the second module of a series of node-modules that I am creating with the main goal of creating node based microservices stacks. This will address the Relational database CRUD APi approach with some database per service around here.

  • It was based on a module that I've previously coded back in 2016, this module has a cleaner way of doing things and has less messy parts. It allows you to take more control on some things. Also has support for restify wich is cool.

  • This module was written using async/await so you it is easier to handle the tricky parts.

  • This module has some cool eslinting around.

ROADMAP

  • I18N support: Will be cool and nice to have translation messages for the supported errors and responses.

  • Extensible support for List endpoint: Basically override the findAll params to include associations or something like that.