├── .borp.yaml ├── .gitattributes ├── .github ├── dependabot.yml ├── stale.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── eslint.config.js ├── index.js ├── lib ├── assert.js ├── cache-control.js ├── httpError.d.ts ├── httpErrors.js └── vary.js ├── package.json ├── test ├── assert.test.js ├── cache-control.test.js ├── forwarded.test.js ├── httpErrors.test.js ├── httpErrorsReply.test.js ├── is.test.js ├── schema.test.js ├── to.test.js └── vary.test.js └── types ├── index.d.ts └── index.test-d.ts /.borp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/.borp.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/index.js -------------------------------------------------------------------------------- /lib/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/lib/assert.js -------------------------------------------------------------------------------- /lib/cache-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/lib/cache-control.js -------------------------------------------------------------------------------- /lib/httpError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/lib/httpError.d.ts -------------------------------------------------------------------------------- /lib/httpErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/lib/httpErrors.js -------------------------------------------------------------------------------- /lib/vary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/lib/vary.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/package.json -------------------------------------------------------------------------------- /test/assert.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/test/assert.test.js -------------------------------------------------------------------------------- /test/cache-control.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/test/cache-control.test.js -------------------------------------------------------------------------------- /test/forwarded.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/test/forwarded.test.js -------------------------------------------------------------------------------- /test/httpErrors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/test/httpErrors.test.js -------------------------------------------------------------------------------- /test/httpErrorsReply.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/test/httpErrorsReply.test.js -------------------------------------------------------------------------------- /test/is.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/test/is.test.js -------------------------------------------------------------------------------- /test/schema.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/test/schema.test.js -------------------------------------------------------------------------------- /test/to.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/test/to.test.js -------------------------------------------------------------------------------- /test/vary.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/test/vary.test.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-sensible/HEAD/types/index.test-d.ts --------------------------------------------------------------------------------