micro-methods
v1.0.0
Published
A utility package which allows you to clean up before node exits
Downloads
7
Readme
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
},
})