├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yaml ├── stale.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── .taprc ├── LICENSE ├── README.md ├── benchmark └── formatEntry.js ├── examples └── example.js ├── index.js ├── lib └── formatEntry.js ├── package.json ├── test ├── formatEntry.test.js ├── http2.test.js ├── stress.test.js ├── warn.test.js ├── writeEarlyHints.test.js └── writeEarlyHintsLinks.test.js └── types ├── index.d.ts └── index.test-d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.taprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/.taprc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/formatEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/benchmark/formatEntry.js -------------------------------------------------------------------------------- /examples/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/examples/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/index.js -------------------------------------------------------------------------------- /lib/formatEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/lib/formatEntry.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/package.json -------------------------------------------------------------------------------- /test/formatEntry.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/test/formatEntry.test.js -------------------------------------------------------------------------------- /test/http2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/test/http2.test.js -------------------------------------------------------------------------------- /test/stress.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/test/stress.test.js -------------------------------------------------------------------------------- /test/warn.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/test/warn.test.js -------------------------------------------------------------------------------- /test/writeEarlyHints.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/test/writeEarlyHints.test.js -------------------------------------------------------------------------------- /test/writeEarlyHintsLinks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/test/writeEarlyHintsLinks.test.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-early-hints/HEAD/types/index.test-d.ts --------------------------------------------------------------------------------