This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

netiam-contrib-rest

2.0.0 • Public • Published

netiam-contrib-rest

Build Status Dependencies npm version

A REST plugin for netiam

Get it

npm i -S netiam netiam-contrib-rest

Example

netiam({plugins})
  .rest({model: User})
  .json()

Compound Documents

To reduce the number of HTTP requests, you can embed related documents within the response object. You can do so, by utilizing the include parameter.

GET /articles?include=comments

Youc an also include more than one document at the same time.

GET /articles?include=comments,links

There is also support for deeply nested documents and documents on the same branch.

GET /articles?include=comments.author.profile,comments.author.image

Transactions

This plugin does support transactions via sequelize cls namespaces. However, it does not enforce transactions as you might use a database engine w/o any support for transactions.

How to

// test/utils/db.js
import Sequelize from 'sequelize'
import cls from 'continuation-local-storage'
import uuid from 'uuid'
 
const namespace = cls.createNamespace(uuid.v4())
Sequelize.cls = namespace
 
export const db = new Sequelize('database', 'username', 'password', {
  …
})

License

MIT License

Package Sidebar

Install

npm i netiam-contrib-rest

Weekly Downloads

1

Version

2.0.0

License

MIT

Unpacked Size

4.56 kB

Total Files

3

Last publish

Collaborators

  • eliias