├── .gitattributes ├── .github ├── dependabot.yml ├── stale.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── auth.js ├── eslint.config.js ├── package.json ├── test ├── auth.test.js ├── example-async.js ├── example-async.test.js ├── example-composited.js ├── example-composited.test.js ├── example.js └── example.test.js └── types ├── index.d.ts └── index.test-d.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/README.md -------------------------------------------------------------------------------- /auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/auth.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/package.json -------------------------------------------------------------------------------- /test/auth.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/test/auth.test.js -------------------------------------------------------------------------------- /test/example-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/test/example-async.js -------------------------------------------------------------------------------- /test/example-async.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/test/example-async.test.js -------------------------------------------------------------------------------- /test/example-composited.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/test/example-composited.js -------------------------------------------------------------------------------- /test/example-composited.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/test/example-composited.test.js -------------------------------------------------------------------------------- /test/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/test/example.js -------------------------------------------------------------------------------- /test/example.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/test/example.test.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-auth/HEAD/types/index.test-d.ts --------------------------------------------------------------------------------