├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jsdoc.json ├── .npmignore ├── .npmrc ├── .taprc ├── CHANGELOG.md ├── Dockerfile-fail.example ├── Dockerfile.example ├── LICENSE ├── README.md ├── example ├── example-under-pressure-fail.js ├── example.js └── home.html ├── package.json ├── src ├── healthcheck.js └── plugin.js ├── test ├── healthcheck.test.js ├── named-import.test-d.ts └── underpressure.test.js └── types ├── .eslintrc.json ├── index.d.ts ├── index.test-d.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/.jsdoc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | # package-lock=false 2 | -------------------------------------------------------------------------------- /.taprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/.taprc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile-fail.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/Dockerfile-fail.example -------------------------------------------------------------------------------- /Dockerfile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/Dockerfile.example -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/README.md -------------------------------------------------------------------------------- /example/example-under-pressure-fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/example/example-under-pressure-fail.js -------------------------------------------------------------------------------- /example/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/example/example.js -------------------------------------------------------------------------------- /example/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/example/home.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/package.json -------------------------------------------------------------------------------- /src/healthcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/src/healthcheck.js -------------------------------------------------------------------------------- /src/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/src/plugin.js -------------------------------------------------------------------------------- /test/healthcheck.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/test/healthcheck.test.js -------------------------------------------------------------------------------- /test/named-import.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/test/named-import.test-d.ts -------------------------------------------------------------------------------- /test/underpressure.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/test/underpressure.test.js -------------------------------------------------------------------------------- /types/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/types/.eslintrc.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/types/index.test-d.ts -------------------------------------------------------------------------------- /types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartiniOnGitHub/fastify-healthcheck/HEAD/types/tsconfig.json --------------------------------------------------------------------------------