├── .gitattributes ├── .github ├── dependabot.yml ├── stale.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── eslint.config.js ├── index.js ├── package.json ├── test ├── 404s.test.js ├── application.test.js ├── basic.test.js ├── enhance-request.test.js ├── form-data.test.js ├── hooks.test.js └── middleware.test.js └── types ├── index.d.ts └── index.test-d.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/package.json -------------------------------------------------------------------------------- /test/404s.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/test/404s.test.js -------------------------------------------------------------------------------- /test/application.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/test/application.test.js -------------------------------------------------------------------------------- /test/basic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/test/basic.test.js -------------------------------------------------------------------------------- /test/enhance-request.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/test/enhance-request.test.js -------------------------------------------------------------------------------- /test/form-data.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/test/form-data.test.js -------------------------------------------------------------------------------- /test/hooks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/test/hooks.test.js -------------------------------------------------------------------------------- /test/middleware.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/test/middleware.test.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-express/HEAD/types/index.test-d.ts --------------------------------------------------------------------------------