├── .gitignore ├── .npmrc ├── .vscode └── launch.json ├── .vscodeignore ├── LICENSE ├── README.md ├── images └── logo-256.png ├── package.json ├── snippets ├── snippets-js.json └── snippets-ts.json └── toc.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-snippet/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-snippet/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-snippet/HEAD/.vscodeignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-snippet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-snippet/HEAD/README.md -------------------------------------------------------------------------------- /images/logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-snippet/HEAD/images/logo-256.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-snippet/HEAD/package.json -------------------------------------------------------------------------------- /snippets/snippets-js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-snippet/HEAD/snippets/snippets-js.json -------------------------------------------------------------------------------- /snippets/snippets-ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-snippet/HEAD/snippets/snippets-ts.json -------------------------------------------------------------------------------- /toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-snippet/HEAD/toc.js --------------------------------------------------------------------------------