0.3.0 • Published 9 years ago

error-coder v0.3.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

error-coder

A node.js module that generates unique error codes.

Build Status

example

app.js

var ErrorCoder = require('error-coder');

var errorsMap = {
  400: {
    15: 'invalid request object - %s',
    25: 'horrible error number %d'
  },
  422: {
    15: 'missing %s parameter',
    25: 'missing %s parameter'
  },
  503: {
    15: 'database error',
    25: 'api server error'
  }
 
// create new instance
var EC = new ErrorCoder(errorsMap, { namespace: 'APP' });

function handleRequest(req, res) {
  // validations: set status for all potential 422 errors
  EC.setStatus(422);
  if(!req.body.username && !req.body.url) {
    EC
    .add(15, 'username')
    .add(25, 'url')
    .send(res);  // auto: `res.status(this.currentStatus).json(generatedErrorsObject)`
  }
  
  EC.setStatus(503);
  db.connect('foo.bar', function(err, connection) {
    if(err) {
      EC.add(15);
      var errObj = EC.send(); // do not send auto response
      res.send(errObj.status).json(errObj);
    }
  });
}

the generated error object

EC.setStatus(400).add(15).add(25, 10025).send();

will return:

{
  status: 400,
  errorCode: 'APP400_15_25',
  errorMessages: 'invalid request object<br>horrible error number 10025'
}

API

var ErrorCoder = require('error-coder');
var EC = new ErrorCoder(errorsMap, options);

Create new instance and passes the options object to the constructor class

errorsMap {Object}: Required. An object that define possible errors and their related messages (see example above).

options include:

  • namespace {String}: The name that will prefix the unique errorCode. error-coder enforces 3 chars long and uppercase standard. If omitted it will be created automatically for you, first by trying to read the name attribute from your package.json file, if the name includes '-' it takes the first letter of each separated word, otherwise it will just take the first ? 3 letters. If for some reason the name could be generated from package.json file, the name space will be 'APP'.
  • errorDelimiter {String}: A character for separating the error codes. defaults to _.
  • messageDelimiter {String}: A character for separating the errors messages. defaults to <br>.
  • distinctCodes {Boolean}: remove duplicate codes from the generated errorCode. defaults to false.

example using options

var EC = new ErrorCoder(errorsMap, {
  namespace: 'WAT', 
  errorDelimiter: '-', 
  messageDelimiter: ', ', 
  distinctCodes: true
 });
 
EC.setStatus(400).add(15).add(15).add(25, 1).send();
/*
   will return:
   {
    status: 400,
    errorCode: 'WAT400-15-25,
    errorMessages: 'invalid request object - foo , 'invalid request object - bar, horrible error number 1'   
   }
 */

EC.setStatus(statusCode)

Set a new group of errors. This is the actual status code of the http response. The statusCode should match to one of your errorsMap entries. After setting new status adding new error(EC.add) and sending (EC.send) will are related to the current status until you set a new statusCode

EC.add(errorCode, messageVariables)

Add new error to the list of current status code errors. Needles to say that he errorCode should match one of the entries in the errorsMap

The error messages supports util.format for message formatting so in messageVariables you can pass any variables that will replace your errorsMap messages placeholders.

EC.send(response)

Send the current errors object.

If response is omitted it will return an object. Otherwise it will automatically send http.response

The response could be "native" node.js http.ServerResponse or express.js response object.

EC.getErrorsMap()

returns the current errorsMap.

install

npm install error-coder

test

npm test

license

(The MIT License)

Copyright (c) 2015 Ofer Itzhaki & the Contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.3.0

9 years ago

0.2.9

9 years ago

0.2.8

9 years ago

0.2.7

9 years ago

0.2.6

9 years ago

0.2.5

9 years ago

0.2.4

9 years ago

0.2.3

9 years ago

0.2.2

9 years ago

0.2.1

9 years ago

0.2.0

9 years ago

0.1.1

9 years ago

0.0.2

9 years ago