gif2webp wrapper that makes it seamlessly available as a local dependency
npm install gif2webp-bin> WebP is a modern image format that provides superior lossless and lossy compression for images on the web. Using WebP, webmasters and web developers can create smaller, richer images that make the web faster.
```
$ npm install --save gif2webp-bin
`js
import {execFile} from 'node:child_process';
import gif2webp from 'gif2webp-bin';
execFile(gif2webp, ['input.gif', '-o', 'outout.webp'], () => {
console.log('Image converted!');
});
`
``
$ npm install --global gif2webp-bin
```
$ gif2webp --help