0.3.1 • Published 3 years ago

@malijs/onerror v0.3.1

Weekly downloads
57
License
Apache-2.0
Repository
github
Last release
3 years ago

@malijs/onerror

Mali on error middleware. Calls function with error and context. The called function does not have access to control flow.

npm version build status

API

@malijs/onerror ⇒ function

Mali on error middleware. Calls function with error and context. The called function does not have access to control flow.

Returns: function - the middleware function

ParamTypeDescription
fnfunctionThe function to call when an error occurs. Function has to have signature with signature (err, ctx)

Example

const onError = require('@malijs/onerror')

function errorLogger (err, ctx) {
  console.log('Error on %s: %s', ctx.name, err.toString())
}

app.use(onError(errorLogger))

License

Apache-2.0