npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sequelize-resource-controller

v1.0.0

Published

CRUD REST Api from your sequelize model for restify and express

Downloads

13

Readme

sequelize-resource-controller

npm version

Build Status

node

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

Testing

Run all tests

npm test

Run unit tests only

npm run unit-test

Run integ tests only

npm run integ-test

Generate ESDOC Documentation

npm run docs

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

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.