1.0.0 • Published 14 days ago

@crabas0npm/tenetur-libero-expedita v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
14 days ago

@crabas0npm/tenetur-libero-expedita

CI NPM version js-standard-style

A small utility, used by Fastify itself, for generating consistent error objects across your codebase and plugins.

Install

npm i @crabas0npm/tenetur-libero-expedita

Usage

The module exports a function that you can use for consistent error objects, it takes 4 parameters:

createError(code, message [, statusCode [, Base]])
  • code (string, required) - The error code, you can access it later with error.code. For consistency, we recommend prefixing plugin error codes with FST_
  • message (string, required) - The error message. You can also use interpolated strings for formatting the message.
  • statusCode (number, optional) - The status code that Fastify will use if the error is sent via HTTP.
  • Base (ErrorConstructor, optional) - The base error object that will be used. (eg TypeError, RangeError)
const createError = require('@crabas0npm/tenetur-libero-expedita')
const CustomError = createError('ERROR_CODE', 'Hello')
console.log(new CustomError()) // error.message => 'Hello'

How to use an interpolated string:

const createError = require('@crabas0npm/tenetur-libero-expedita')
const CustomError = createError('ERROR_CODE', 'Hello %s')
console.log(new CustomError('world')) // error.message => 'Hello world'

How to add cause:

const createError = require('@crabas0npm/tenetur-libero-expedita')
const CustomError = createError('ERROR_CODE', 'Hello %s')
console.log(new CustomError('world', {cause: new Error('cause')})) 
// error.message => 'Hello world'
// error.cause => Error('cause')

TypeScript

It is possible to limit your error constructor with a generic type using TypeScript:

const CustomError = createError<[string]>('ERROR_CODE', 'Hello %s')
new CustomError('world')
//@ts-expect-error
new CustomError(1)

License

Licensed under MIT.

clonepostcss-pluginJSONrangeerrorRegExp#flagsexpressionclassnamesauthspecmergevestscheme6to5es7consumesignalsbabel-coreinferencedescriptorInt8ArrayECMAScript 7irqCSSwatchfullenvFloat64Arrayflattenmimehttpreadable__proto__WebSocketsextendsetterparseSetthroatObservablereact-hook-formoptimizerES3es-shimsbrowserhelperschromiumnegative zerojsstreamES2016animationbluebirdformutilityeslint-pluginvariablescurlquerydefinePropertyreuseString.prototype.trimenvironmentmacosuuiddependency managerextraprotobufprocessdeep-cloneworkerlruECMAScript 2018bddargvArray.prototype.flatMapwarningAsyncIteratornopesettingsUint16Arraydayjsarraygetoptsetfast-deep-copya11ycollectionArray.prototype.includesObject.assigndefinesuperagentassertboundestreegradients cssasciiWebSocketes-shim APIecmascriptzodfast-deep-clonetypanionurlsRegExp.prototype.flagsvalidationcallbindcommandfull-widthsliceshrinkwrapless compiler0matchhashslotdragcharacterguidchainameconstlook-upstylingmochauser-streamsregexpawaitvaluefinduptypesafeelectroncensorconfigcurriedsignalES2023expressincludesUint8Arrayexepreprocessorcomparebootstrap lessgroupsuperstructsharedarraybufferzerodeleteconsoledeep-copyupcode pointsglobtoobjectcontainsjsondom-testing-libraryterminalauthenticationregular expressionsisbindimmutableweakmaphooksArraybusymime-dbcharacterslinuxtextajv256testingdebugdiffhasforEachiechineseclassestoStringTagvariables in cssdescriptionwindowses2015i18ndefaultstdlibmulti-packageshebangArrayBufferassignlintpersistentconcatMapes5momentmatchesapiReactiveXfetchvalidTypedArrayObjecttraversenested cssyupparentlookomitminimalperformantES2015fseventsECMAScript 2015ES2021jsonpathkeyprunetermpluginStyleSheetform-validationartemitjsdiffpropastES5sigtermfullwidthreadsameValueZerojson-schema-validationdropunicodedescriptorswordbreakReactiveExtensionsreduceRxshellnodejsformatTypeScriptserializerxhrassertspushwrapcjkratenodetslibstatusdirectoryBigInt64ArraywritespeedmkdirptrimramdavarmrupopmotionIteratorcomputed-typestrimLefttc39childArray.prototype.findLastIndexprivate datajoipositivestatelesses6polyfillpackagequerystringArray.prototype.flattenimportWeakMapfindloggingavaspawnautoprefixertrimRighttddArray.prototype.filtersanitizationtypedvalidatepackage managerintrinsicreact-hooksclimimetypestrimEndsafewalkutilsajaxpromisefunctionprotokeyspropertyspringoutputcommanderschemaes8typedarrayshamECMAScript 6setImmediateconfigurableremovewalkingtyped arraybundlingcorexterm3dmonorepofixed-widthlogES8immerfastcss-in-jsObject.keysargparsereducerbyteOffsetInt16ArrayURLweb[[Prototype]]getpyyamlhttpsrm -rfjwtisConcatSpreadablecss nestingobjECMAScript 2017fast-copymobile@@toStringTagpureansisymlinksconcatchromerecursivejsonschemaPushECMAScript 3rm -frmake dirpipeeslintpluginponyfilllesscssfind-upparserside.envfilterprototypeclassnameRFC-6455browserslistECMAScript 2021Float32ArraycmdreactStreamsgroupBynumberregular expressionbufferspicomatchECMAScript 5stylesheetcompile lessObservablesletpostcsses-abstracturlbundlersymbolfunctionsloggerstyleguidelaunchhasOwnclientrmcallbacknamesqueueMicrotasksymlinkprivatetypeofStreamjQuerywgetlistenerspnpm9eventDispatchertoolkitenderbrowserlistfindLastIndexrapidsomeargsHyBibabeltelephoneArrayBuffer.prototype.slicetypeweaksetpassworddommodulescolorECMAScript 2022installergdprES2018writablefigletwordwrapArray.prototype.flatdirUint8ClampedArrayonceoffsetopenerjapanesebatchprettyeveryrmdirentriesphonejson-schemametadatastringifieroptionRxJSgetintrinsiclengthgenericscheckJSON-Schemabreakcollection.es6regexargumentsworkspace:*opensiteratorjsdomsearchqueuefastcopyutilsortasyncprotocol-bufferscall-binddebuggeruninstallString.prototype.matchAllawesomesaucewatchFilechannelcolumnpathtrimStartes2016inputindicatorprogresssyntaxerrorwaites2018$.extendObject.isfromio-tsless.jsfsdateexecutablespinnerscryptformattinghigher-ordertakemovelinewrapcommand-linenative
1.0.0

14 days ago