├── .github └── workflows │ ├── main.yml │ └── release.yaml ├── .gitignore ├── .mocharc.yaml ├── .npmignore ├── History.md ├── LICENSE ├── README.md ├── bin ├── download_webp.ps1 └── install_webp ├── methods.json ├── package.json ├── src ├── args.coffee ├── index.coffee ├── io.coffee ├── utils.coffee ├── webp.coffee └── wrapper.coffee └── test ├── api.coffee ├── cwebp.coffee ├── dwebp.coffee ├── io.coffee ├── main.coffee ├── methods.coffee ├── module.coffee ├── round-trip.coffee ├── spawn.coffee └── utils ├── data.coffee ├── data_base64.json ├── env.coffee ├── io.coffee ├── mock-spawn.coffee └── run.coffee /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/.mocharc.yaml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/.npmignore -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/README.md -------------------------------------------------------------------------------- /bin/download_webp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/bin/download_webp.ps1 -------------------------------------------------------------------------------- /bin/install_webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/bin/install_webp -------------------------------------------------------------------------------- /methods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/methods.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/package.json -------------------------------------------------------------------------------- /src/args.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/src/args.coffee -------------------------------------------------------------------------------- /src/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/src/index.coffee -------------------------------------------------------------------------------- /src/io.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/src/io.coffee -------------------------------------------------------------------------------- /src/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/src/utils.coffee -------------------------------------------------------------------------------- /src/webp.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/src/webp.coffee -------------------------------------------------------------------------------- /src/wrapper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/src/wrapper.coffee -------------------------------------------------------------------------------- /test/api.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/api.coffee -------------------------------------------------------------------------------- /test/cwebp.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/cwebp.coffee -------------------------------------------------------------------------------- /test/dwebp.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/dwebp.coffee -------------------------------------------------------------------------------- /test/io.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/io.coffee -------------------------------------------------------------------------------- /test/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/main.coffee -------------------------------------------------------------------------------- /test/methods.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/methods.coffee -------------------------------------------------------------------------------- /test/module.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/module.coffee -------------------------------------------------------------------------------- /test/round-trip.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/round-trip.coffee -------------------------------------------------------------------------------- /test/spawn.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/spawn.coffee -------------------------------------------------------------------------------- /test/utils/data.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/utils/data.coffee -------------------------------------------------------------------------------- /test/utils/data_base64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/utils/data_base64.json -------------------------------------------------------------------------------- /test/utils/env.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/utils/env.coffee -------------------------------------------------------------------------------- /test/utils/io.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/utils/io.coffee -------------------------------------------------------------------------------- /test/utils/mock-spawn.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/utils/mock-spawn.coffee -------------------------------------------------------------------------------- /test/utils/run.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intervox/node-webp/HEAD/test/utils/run.coffee --------------------------------------------------------------------------------