├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .prettierrc.json ├── .taprc ├── LICENSE ├── README.md ├── eslint.config.js ├── index.js ├── package.json ├── test-tap └── requestContextPlugin.e2e.test.js ├── test ├── internal │ ├── appInitializer.js │ ├── testService.js │ └── watcherService.js ├── requestContextPlugin.e2e.spec.js └── requestContextPlugin.spec.js ├── tsconfig.json └── types ├── index.d.ts └── index.test-d.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.taprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/.taprc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/package.json -------------------------------------------------------------------------------- /test-tap/requestContextPlugin.e2e.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/test-tap/requestContextPlugin.e2e.test.js -------------------------------------------------------------------------------- /test/internal/appInitializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/test/internal/appInitializer.js -------------------------------------------------------------------------------- /test/internal/testService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/test/internal/testService.js -------------------------------------------------------------------------------- /test/internal/watcherService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/test/internal/watcherService.js -------------------------------------------------------------------------------- /test/requestContextPlugin.e2e.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/test/requestContextPlugin.e2e.spec.js -------------------------------------------------------------------------------- /test/requestContextPlugin.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/test/requestContextPlugin.spec.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-request-context/HEAD/types/index.test-d.ts --------------------------------------------------------------------------------