├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── benchmark ├── express ├── express-multi ├── tiny-cdn └── tiny-cdn-multi ├── cli ├── tiny-cdn-cli.js └── tiny-cdn-converger.js ├── demo └── source │ ├── a │ └── b │ │ └── c │ │ └── lorem-ipsum.txt │ ├── index.html │ └── lorem-ipsum.txt ├── package.json ├── test ├── .test.js ├── example.converger.js ├── tiny-cdn-converger.js └── tiny-cdn.js └── tiny-cdn /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | demo/dest/* 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/express: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/benchmark/express -------------------------------------------------------------------------------- /benchmark/express-multi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/benchmark/express-multi -------------------------------------------------------------------------------- /benchmark/tiny-cdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/benchmark/tiny-cdn -------------------------------------------------------------------------------- /benchmark/tiny-cdn-multi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/benchmark/tiny-cdn-multi -------------------------------------------------------------------------------- /cli/tiny-cdn-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/cli/tiny-cdn-cli.js -------------------------------------------------------------------------------- /cli/tiny-cdn-converger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/cli/tiny-cdn-converger.js -------------------------------------------------------------------------------- /demo/source/a/b/c/lorem-ipsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/demo/source/a/b/c/lorem-ipsum.txt -------------------------------------------------------------------------------- /demo/source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/demo/source/index.html -------------------------------------------------------------------------------- /demo/source/lorem-ipsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/demo/source/lorem-ipsum.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/package.json -------------------------------------------------------------------------------- /test/.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/test/.test.js -------------------------------------------------------------------------------- /test/example.converger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/test/example.converger.js -------------------------------------------------------------------------------- /test/tiny-cdn-converger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/test/tiny-cdn-converger.js -------------------------------------------------------------------------------- /test/tiny-cdn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/test/tiny-cdn.js -------------------------------------------------------------------------------- /tiny-cdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/tiny-cdn/HEAD/tiny-cdn --------------------------------------------------------------------------------