web-errors
v0.1.5
Published
web-errors for all restful apis
Maintainers
Readme
Web errors provides an easy way to define and use errors for restful apis.
Benefits OR Aims
1.Unified Error Handling for servers and clients(browsers, android, ios)
2.Customizable error definitions
3.A standard general error standard for restful apis
Install
nodejs/iojs
$ npm install --save web-errorsbower
$ bower install --save web-errorsUsage
nodejs/iojs
var errors = require('web-errors').errors;browser
<script src="bower_components/web-errors/dist/web-errors.js"></script>How to define errors
Usage:
var webErrors = require('web-errors');
var conf = {
data: {
entities: '../lib/data/entities',
properties: '../lib/data/properties',
types: '../lib/data/types',
events: '../lib/data/events',
errors: '../lib/data/errors'
},
i18n: {
"zh-CN": '../lib/data/i18n/zh-CN',
"en-US": '../lib/data/i18n/en-US'
}
};
webErrors.set(conf.data, config.i18n);License
MIT © calidion
