Skip to content
This repository has been archived by the owner on Apr 19, 2022. It is now read-only.

A collection of error formatters used by Indicative

License

Notifications You must be signed in to change notification settings

poppinss/indicative-formatters

Repository files navigation


Indicative Formatters

Collection of error formatters used by Indicative

circleci-image npm-image

Indicative has first class support for formatting error messages with the help of an Error formatter. This repo contains a handful of them.

Table of contents

Usage

Install the package from npm registry as follows:

npm i indicative-formatters

# yarn
yarn add indicative-formatters

and then use it as follows:

import { VanillaFormatter } from 'indicative-formatters'

const formatter = new VanillaFormatter()
formatter.addError('Required validation failed', 'username', { name: 'required', args: [] })

// Get all errors
formatter.toJSON()

API Docs

Following are the autogenerated files via Typedoc

Maintainers

Harminder virk