Socket
Book a DemoInstallSign in
Socket

@clocklimited/cf-crud-service-api-builder

Package Overview
Dependencies
Maintainers
5
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@clocklimited/cf-crud-service-api-builder

Build an HTTP API for a crud-service

latest
Source
npmnpm
Version
2.1.2
Version published
Maintainers
5
Created
Source

@clocklimited/cf-crud-service-api-builder

CircleCI

Build an HTTP API for a @clocklimited/crud-service.

Installation

npm install --save @clocklimited/cf-crud-service-api-builder
npm install --save @clocklimited/schemata

Usage

const crudServiceApiBuilder = require('cf-crud-service-api-builder')
const router = require('express')()
const logger = require('bunyan').createLogger()
const service = require('./service')
const middleware = require('./auth-check-middleware')

crudServiceApiBuilder(service, '/widgets', router, logger, middleware)

Hooks

When using the api builder, you can hook into certain actions to manipulate the request data before it is sent to the database or the response data before it is sent to the requester.

const api = crudServiceApiBuilder(
  service,
  '/article',
  router,
  logger,
  middleware
)

api.hook('create:request', function (data, cb) {
  // do whatever you like with the data
  cb(null, data)
})

Supported hooks are:

  • create:request
  • create:response
  • read:response
  • update:request
  • update:response
  • partialUpdate:request
  • partialUpdate:response

Events

When using the api builder, you can listen for certain events so that you can add hooks to perform your own actions after a request has been succesful. e.g

const api = crudServiceApiBuilder(
  service,
  '/article',
  router,
  logger,
  middleware
)

api.on('create', function (req, newArticle) {
  // do whatever you like with the req and article object
})

Supported events are:

  • create
  • update
  • partialUpdate
  • delete

Credits

Built by developers at Clock.

Licence

Licensed under the ISC

FAQs

Package last updated on 08 Jan 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts