├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── compositor.json ├── index.js ├── package.json └── test ├── example.js ├── flying-pug.jpg ├── flying-pug.q50.baseline.jpg ├── flying-pug.q50.jpg ├── flying-pug.q75.jpg └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableflip/mozjpeg-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableflip/mozjpeg-stream/HEAD/README.md -------------------------------------------------------------------------------- /compositor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableflip/mozjpeg-stream/HEAD/compositor.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableflip/mozjpeg-stream/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableflip/mozjpeg-stream/HEAD/package.json -------------------------------------------------------------------------------- /test/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableflip/mozjpeg-stream/HEAD/test/example.js -------------------------------------------------------------------------------- /test/flying-pug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableflip/mozjpeg-stream/HEAD/test/flying-pug.jpg -------------------------------------------------------------------------------- /test/flying-pug.q50.baseline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableflip/mozjpeg-stream/HEAD/test/flying-pug.q50.baseline.jpg -------------------------------------------------------------------------------- /test/flying-pug.q50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableflip/mozjpeg-stream/HEAD/test/flying-pug.q50.jpg -------------------------------------------------------------------------------- /test/flying-pug.q75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableflip/mozjpeg-stream/HEAD/test/flying-pug.q75.jpg -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableflip/mozjpeg-stream/HEAD/test/test.js --------------------------------------------------------------------------------