@sinet/lapin-send-error

Uniform way to send errors for lapin, removing nesting, and concatenating error codes

Usage no npm install needed!

<script type="module">
  import sinetLapinSendError from 'https://cdn.skypack.dev/@sinet/lapin-send-error';
</script>

README

Lapin Send Error

Version npm Build Status Dependency Status devDependency Status

Error handling for Lapin calls. Handles fail returns without nesting, concatenates error codes.

Usage

npm install @sinet/lapin-send-error --save

Example

If you receive an error from a database query or remote lapin call easily handle it with:

const sendError = require( '@sinet/lapin-send-error' );

if ( error ) {
    return sendError( send, error, 'code' );
}

The first parameter is the send object from Lapin.

Contributing

All pull requests must follow coding conventions and standards.