1.0.3 • Published 6 years ago

express-api-methods v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Express Api Methods

List of methods that are being used for express api handling:

  • all
  • checkout
  • copy
  • delete
  • get
  • head
  • lock
  • merge
  • mkactivity
  • mkcol
  • move
  • m-search
  • notify
  • options
  • param
  • patch
  • post
  • purge
  • put
  • report
  • search
  • subscribe
  • trace
  • unlock
  • unsubscribe

Install

npm install --save express-api-methods

or with yarn:

yarn add express-api-methods

Usage

import methods from 'express-api-methods'

console.log(methods)
/*
[
  'all',
  'checkout',
  'copy',
  'delete',
  'get',
  'head',
  'lock',
  'merge',
  'mkactivity',
  'mkcol',
  'move',
  'm-search',
  'notify',
  'options',
  'param',
  'patch',
  'post',
  'purge',
  'put',
  'report',
  'search',
  'subscribe',
  'trace',
  'unlock',
  'unsubscribe',
]
*/