cnpm errors. A framework aiming at automatically fixing user falsies.
Normally when coming across a misuse of framework, the framework developer tends to print a message to inform users the right way.
This framework provides a way to automatically fix misuses. Both framework developers and users should save their lives when things could be done with codes.
npm i -S @cnpmjs/errors
- JS Code sample
const { ErrorRunner, ErrorEnum } = require('@cnpmjs/errors');
const error = new ErrorRunner({
path: path.join('/path/to/your/error/folder'), // error config folders
lang: 'zh-cn', // i18n
loglevel: ErrorEnum.Info, // global error level
});
// run customized error
await error.test(new CustomizedError());
- Error configuration Checkout the example folders or integration tests for full usage showcase.