├── .gitignore ├── .travis.yml ├── README.md ├── example.js ├── example.ts ├── index.d.ts ├── index.js ├── package.json ├── test ├── upload.test.js └── uploadSchema.test.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangang/fastify-file-upload/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangang/fastify-file-upload/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangang/fastify-file-upload/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangang/fastify-file-upload/HEAD/example.js -------------------------------------------------------------------------------- /example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangang/fastify-file-upload/HEAD/example.ts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangang/fastify-file-upload/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangang/fastify-file-upload/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangang/fastify-file-upload/HEAD/package.json -------------------------------------------------------------------------------- /test/upload.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangang/fastify-file-upload/HEAD/test/upload.test.js -------------------------------------------------------------------------------- /test/uploadSchema.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangang/fastify-file-upload/HEAD/test/uploadSchema.test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangang/fastify-file-upload/HEAD/tsconfig.json --------------------------------------------------------------------------------