Compact version of Jimp
npm install jimp-compact



> Lightweight version of Jimp compiled with vercel/ncc
This package has 27x smaller install size with all features of original jimp (Jimp install size is ~33.8MB) by bundling all node_modules and removing extra files.
Install and import/require jimp-compact instead of jimp npm package.
``shnpm
npm i jimp-compact
`js
// ESM
import Jimp from 'jimp-compact'// CJS
const Jimp = require('jimp-compact')
`See jimp docs for full usage.
Known Issues
In order to make typescript working, you need to (also) install
jimp in devDependencies`!MIT - Based on Jimp