@random-guys/express-jsend
v0.1.0
Published
Wrapper around axios for interservice communication
Downloads
3
Readme
express-jsend
Integration of jsend and express
How to install?
yarn add @random-guys/express-jsend
How does it work?
app.get('/success', async (_req, res) => {
res.jSend.success({ result: 0 })
})
app.get('/error', (_req, res) => {
// @ts-ignore
res.jSend.error({ field: 'name' }, 'This fields are required', 422)
})