1. jimp-compact
Compact version of Jimp
jimp-compact
Package: jimp-compact
Created by: unjs
Last modified: Fri, 06 May 2022 13:53:54 GMT
Version: 0.16.1-2
License: MIT
Downloads: 2,406,470
Repository: https://github.com/unjs/jimp-compact

Install

npm install jimp-compact
yarn add jimp-compact

✏️ Jimp Compact

npm version
npm downloads
install size

Lightweight version of Jimp compiled with vercel/ncc

Why?

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.

Usage

Install and import/require jimp-compact instead of jimp npm package.

 # npm
npm i jimp-compact

# yarn
yarn add jimp-compact
 // 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!
Track issue via #39 and #42.

License

MIT - Based on Jimp

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin