Skip to content

A small utility for generating consistent errors

License

Notifications You must be signed in to change notification settings

dancastillo/error

Repository files navigation

@dancastillo/error

A small utility for generating consistent errors

Install

npm

npm install @dancastillo/error

yarn

npm add @dancastillo/error

pnpm

pnpm install @dancastillo/error

Usage

createError(code, message [, detail [, meta]])
  • code (number, required) - The error code, you can access it viaerror.code.
  • message (string, required) - The error message.
  • detail (string[], optional) - The error detail. You can include additional information about the error that has occurred.
  • meta (T extends object, optional) - Additional metadata object that you can pass in with generic.

TypeScript Example

import { createError, type DCError } from '@dancastillo/error'

type Meta = { userId: string }

const err = createError<Meta>(500, 'Title', 'Detail', { userId: 'some-user-id' })

console.log(err.code) // 500
console.log(err.title) // 'Title'
console.log(err.detail) // 'Detail'
console.log(err.meta) // { userId: 'some-user-id' }

JavaScript Example

import { createError } from '@dancastillo/error'

const err = createError(500, 'Title', 'Detail', { userId: 'some-user-id' })

console.log(err.code) // 500
console.log(err.title) // 'Title'
console.log(err.detail) // 'Detail'
console.log(err.meta) // { userId: 'some-user-id' }

License

Licensed under MIT.

About

A small utility for generating consistent errors

Resources

License

Stars

Watchers

Forks

Packages

No packages published