├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── eslint.config.js ├── package.json ├── prettier.config.js ├── src ├── handlers.ts ├── index.ts ├── interfaces.ts ├── utils.ts └── validation.ts ├── test ├── config │ ├── c8-ci.json │ └── c8-local.json ├── hooks.test.ts ├── index.test.ts ├── utils.test.ts └── validation.test.ts ├── tsconfig.json └── tsconfig.test.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | types/ 3 | coverage/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/src/handlers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/src/validation.ts -------------------------------------------------------------------------------- /test/config/c8-ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/test/config/c8-ci.json -------------------------------------------------------------------------------- /test/config/c8-local.json: -------------------------------------------------------------------------------- 1 | { 2 | "reporter": ["text", "html"] 3 | } 4 | -------------------------------------------------------------------------------- /test/hooks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/test/hooks.test.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /test/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/test/utils.test.ts -------------------------------------------------------------------------------- /test/validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/test/validation.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-http-errors-enhanced/HEAD/tsconfig.test.json --------------------------------------------------------------------------------