micro-methods

A decorator for use with micro to handle requests differently depending on HTTP method

MIT License

Downloads
7
Stars
1
Committers
3

micro-methods

Handle a request based on the request method.

Installing

# npm
npm install -s micro-methods

# yarn
yarn add micro-methods

Usage

import methods from 'micro-methods'

export default methods({
  GET(req, res) {
    // this function will serve GET requests
  },
  async POST(req, res) {
    // this function will serve POST requests
  },
})