Gathering detailed insights and metrics for @volue/wasm-codecs-gifsicle
Gathering detailed insights and metrics for @volue/wasm-codecs-gifsicle
Gathering detailed insights and metrics for @volue/wasm-codecs-gifsicle
Gathering detailed insights and metrics for @volue/wasm-codecs-gifsicle
WebAssembly codecs for mozjpeg, oxipng, gifsicle and webp.
npm install @volue/wasm-codecs-gifsicle
Typescript
Module System
Node Version
NPM Version
TypeScript (74%)
C++ (11.99%)
Rust (5.61%)
Dockerfile (4.06%)
Shell (3.34%)
JavaScript (1%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
64 Stars
46 Commits
3 Forks
5 Watchers
38 Branches
2 Contributors
Updated on Mar 27, 2025
Latest Version
1.0.0
Package Id
@volue/wasm-codecs-gifsicle@1.0.0
Unpacked Size
296.79 kB
Size
119.84 kB
File Count
15
NPM Version
6.14.11
Node Version
14.16.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
@wasm-codecs/gifsicle
Gifsicle WebAssembly Codec
1npm install @wasm-codecs/gifsicle
Requirements:
1import encode from '@wasm-codecs/gifsicle'; 2 3(async () => { 4 const encodedImage = await encode(image, encodeOptions); 5})();
encode(image, encodeOptions?): Buffer
Returns a buffer containing the compressed image data.
image: Buffer
Buffer of a GIF image.
encodeOptions?: EncodeOptions
All encoding options are optional and fall back to the default values.
1type EncodeOptions = { 2 optimizationLevel?: number; 3 interlaced?: boolean; 4 colors?: number; 5 width?: number; 6 height?: number; 7}
1import fs from 'fs'; 2import encode from '@wasm-codecs/gifsicle'; 3 4(async () => { 5 // read input image as a buffer 6 const data = fs.readFileSync('in.gif'); 7 8 // encode the image using @wasm-codecs/gifsicle 9 const output = await encode(data); 10 11 // save the image to the file system 12 fs.writeFileSync('out.png', output); 13})();
Licensed under the MIT license.
© Copyright Cyril Wanner
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 2
Details
Reason
Found 0/14 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
73 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More