codigo0/node_modules/fault
planetazuzu 5d7a6500fe refactor: Fase 1 - Clean Architecture, refactorización modular y eliminación de duplicidades
-  Ticket 1.1: Estructura Clean Architecture en backend
-  Ticket 1.2: Schemas Zod compartidos
-  Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares)
-  Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares)
-  Ticket 1.5: Eliminación de duplicidades (~50 líneas)

Cambios principales:
- Creada estructura Clean Architecture en backend/src/
- Schemas Zod compartidos en backend/src/shared/schemas/
- Refactorización modular de drugs y procedures
- Utilidades genéricas en src/utils/ (filter, validation)
- Eliminados scripts obsoletos y documentación antigua
- Corregidos errores: QueryClient, import test-error-handling
- Build verificado y funcionando correctamente
2026-01-25 21:09:47 +01:00
..
index.d.ts refactor: Fase 1 - Clean Architecture, refactorización modular y eliminación de duplicidades 2026-01-25 21:09:47 +01:00
index.js refactor: Fase 1 - Clean Architecture, refactorización modular y eliminación de duplicidades 2026-01-25 21:09:47 +01:00
license refactor: Fase 1 - Clean Architecture, refactorización modular y eliminación de duplicidades 2026-01-25 21:09:47 +01:00
package.json refactor: Fase 1 - Clean Architecture, refactorización modular y eliminación de duplicidades 2026-01-25 21:09:47 +01:00
readme.md refactor: Fase 1 - Clean Architecture, refactorización modular y eliminación de duplicidades 2026-01-25 21:09:47 +01:00

fault

Build Coverage Downloads Size

Functional errors with formatted output.

Contents

What is this?

This package adds printf-like interpolation to errors.

When should I use this?

This package useful when you frequently display parameters in error messages and manual string concatenation is becoming verbose.

Install

This package is ESM only. In Node.js (version 12.20+, 14.14+, or 16.0+), install with npm:

npm install fault

In Deno with Skypack:

import {fault} from 'https://cdn.skypack.dev/fault@2?dts'

In browsers with Skypack:

<script type="module">
  import {fault} from 'https://cdn.skypack.dev/fault@2?min'
</script>

Use

import {fault} from 'fault'

throw fault('Hello %s!', 'Eric')

Yields:

Error: Hello Eric!
    at FormattedError (~/node_modules/fault/index.js:30:12)
    at Object.<anonymous> (~/example.js:3:7)
    …

Or, format a float in a type error:

import {fault} from 'fault'

throw fault.type('Who doesnt like %f? 🍰', Math.PI)

Yields:

TypeError: Who doesnt like 3.141593? 🍰
    at Function.FormattedError [as type] (~/node_modules/fault/index.js:30:12)
    at Object.<anonymous> (~/example.js:3:7)

API

This package exports the following identifiers: fault and create. There is no default export.

fault(format?[, values…])

Create an error with a printf-like formatted message.

Parameters
  • format (string, optional) — template string
  • values (*, optional) — values to render in format
Returns

An Error instance.

Formatters

The following formatters are supported in format:

  • %s — string
  • %b — binary
  • %c — character
  • %d — decimal
  • %f — floating point
  • %o — octal
  • %x — lowercase hexadecimal
  • %X — uppercase hexadecimal
  • % followed by any other character, prints that character

See samsonjs/format for argument parsing.

Other errors

create(Constructor)

Factory to create instances of ErrorConstructor with support for formatting. Used internally to wrap the global error constructors and exposed for custom errors. Returns a function just like fault.

Types

This package is fully typed with TypeScript. There are no extra exported types.

Compatibility

This package is at least compatible with all maintained versions of Node.js. As of now, that is Node.js 12.20+, 14.14+, and 16.0+. It also works in Deno and modern browsers.

Security

This package is safe.

Contribute

Yes please! See How to Contribute to Open Source.

License

MIT © Titus Wormer