![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@jsquash/webp
Advanced tools
Wasm webp encoder and decoder supporting the browser. Repackaged from Squoosh App.
An easy experience for encoding and decoding WebP images in the browser. Powered by WebAssembly ⚡️.
Uses the libwebp library.
A jSquash package. Codecs and supporting code derived from the Squoosh app.
npm install --save @jsquash/webp
# Or your favourite package manager alternative
Note: You will need to either manually include the wasm files from the codec directory or use a bundler like WebPack or Rollup to include them in your app/server.
Decodes WebP binary ArrayBuffer to raw RGB image data.
Type: ArrayBuffer
import { decode } from '@jsquash/webp';
const formEl = document.querySelector('form');
const formData = new FormData(formEl);
// Assuming user selected an input WebP file
const imageData = await decode(await formData.get('image').arrayBuffer());
Encodes raw RGB image data to WebP format and resolves to an ArrayBuffer of binary data.
Type: ImageData
Type: Partial<EncodeOptions>
The WebP encoder options for the output image. See default values.
import { encode } from '@jsquash/webp';
async function loadImage(src) {
const img = document.createElement('img');
img.src = src;
await new Promise(resolve => img.onload = resolve);
const canvas = document.createElement('canvas');
[canvas.width, canvas.height] = [img.width, img.height];
const ctx = canvas.getContext('2d');
ctx.drawImage(img, 0, 0);
return ctx.getImageData(0, 0, img.width, img.height);
}
const rawImageData = await loadImage('/example.png');
const webpBuffer = await encode(rawImageData);
FAQs
Wasm webp encoder and decoder supporting the browser. Repackaged from Squoosh App.
The npm package @jsquash/webp receives a total of 3,445 weekly downloads. As such, @jsquash/webp popularity was classified as popular.
We found that @jsquash/webp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.