├── .gitignore ├── .lintstagedrc ├── .npmignore ├── .nvmrc ├── CHANGELOG.md ├── README.md ├── index.d.ts ├── jest.config.js ├── package.json ├── src ├── __tests__ │ ├── __snapshots__ │ │ └── index.test.js.snap │ ├── index.test.js │ └── types │ │ ├── tsconfig.json │ │ └── type.test.ts └── index.js └── var ├── examples └── six-kind-of-routes-server.js └── images └── output_example.png /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | *.tgz 4 | .DS_Store -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- 1 | { 2 | "*.{js}": ["prettier --write", "git add"] 3 | } -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelPolyakov/fastify-blipp/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v8 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelPolyakov/fastify-blipp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelPolyakov/fastify-blipp/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelPolyakov/fastify-blipp/HEAD/index.d.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelPolyakov/fastify-blipp/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelPolyakov/fastify-blipp/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelPolyakov/fastify-blipp/HEAD/src/__tests__/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /src/__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelPolyakov/fastify-blipp/HEAD/src/__tests__/index.test.js -------------------------------------------------------------------------------- /src/__tests__/types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelPolyakov/fastify-blipp/HEAD/src/__tests__/types/tsconfig.json -------------------------------------------------------------------------------- /src/__tests__/types/type.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelPolyakov/fastify-blipp/HEAD/src/__tests__/types/type.test.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelPolyakov/fastify-blipp/HEAD/src/index.js -------------------------------------------------------------------------------- /var/examples/six-kind-of-routes-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelPolyakov/fastify-blipp/HEAD/var/examples/six-kind-of-routes-server.js -------------------------------------------------------------------------------- /var/images/output_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelPolyakov/fastify-blipp/HEAD/var/images/output_example.png --------------------------------------------------------------------------------