This is a completely free public domain software, read more in the end
- error-key is use to simplify your project errors & give them unique numbers for easy identification. Quite helpful in case of rest apis where you wish to convey what caused the error & also able to track down the error/bug internally.
- for APIs specifically you can also easily fetch
statusCode
to return from your error code ; no more guessing / writing deep logic for exactstatusCode
to send
- define an object with the following format (learn about the format below)
const errorObj = {
404 : {
"userNotFound": "userNotFound",
"orgNotFound": "orgNotFound"
},
500 : {
"unknown: "unknown"
}
}
- next initialize in start of your project
const errorKey = require("error-key");
errorKey.initErrors([], errorObj) // initializing
errorKey.keys() // will return object of unique keys with unique codes
errorKey.map() // return object similar to config file with unique code mapping
// you can simply get unique error code anywhere
try{
// ....
}catch(err){
const uniqueCode = errorKey.keys().invalidKey;
// uniqueCode is a number eg: 4001011 or 5021012
// read more detail about them below
}
You start by creating a unique configuration object anywhere in your project which you can pass to the initErrors
object.
- The config file is quite simple to understand. The first nesting is your
statusCode
keys & in each key the error that you wish to declare with bothkey
&value
name similar. - All common status codes (for errors) are covered between 400 - 600 although if you wish to use some other error code you have to pass it inside
initErrors
function (see below) - You can only provide status codes you need and skip the others
Note: The above example (in quick code) is the way your config object should be structured. You will receive an error while initializing if incorrect format is provided.
Simply initialize this anywhere in your project (ofcourse recommended way is in the very start itself)
initErrors(codes, config)
- codes : array of
numbers
- if you wish to provide customstatusCodes
(provide[]
if no custom codes)- example:
init([888,999], errorObj)
- example:
- config: your configuration object (learn about config object above)
- example:
init([], errorObj)
- example:
- codes : array of
Twitter - @dawnimpulse
Email - [email protected]
This package is Treeware. If you use it in production, then we ask that you buy the world a tree to thank us for our work. By contributing to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.
error-key is free and unencumbered public domain software.
For more information, see http://unlicense.org/ or the accompanying UNLICENSE file.
Written with StackEdit.