Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 403 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 403 Bytes

Dependency Status devDependency Status

Installation

npm i --save dhandler

Initialisation

const dhandler = require('dhandler');

app.get('/', dhandler(async (req, res) => {
  res.send();
}));