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 },})