npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vite-plugin-min-jpg

v2.0.1

Published

1. 这是一个 vite 插件,用来压缩 jpg,其他的都不支持 2. import 导入后,就可以在 vite 的 plugin 配置项目里添加了。 3. imageCompressionPlugin 的第一个参数是你 build 完之后 jpg 的存放路径,比如我项目的 build 之后存放的路径是 dist/static/jpg 。 第二个参数就是压缩参数:100 为不压缩 , 默认压缩 50 4. 优点:这个包使用 images,对底层兼容性好。在某些 docker 环节上,imagemin 这个

Downloads

4

Readme

  1. 这是一个 vite 插件,用来压缩 jpg,其他的都不支持
  2. import 导入后,就可以在 vite 的 plugin 配置项目里添加了。
  3. imageCompressionPlugin 的第一个参数是你 build 完之后 jpg 的存放路径,比如我项目的 build 之后存放的路径是 dist/static/jpg 。 第二个参数就是压缩参数:100 为不压缩 , 默认压缩 50
  4. 优点:这个包使用 images,对底层兼容性好。在某些 docker 环节上,imagemin 这个库用起来有很多兼容性问题,所以开发了这个库。
  5. 可惜的是,目前只支持 jpg

This is a Vite plugin designed to compress JPEG images, and it does not support other formats. Once imported, you can add it to the Vite plugin configuration. The first parameter of the imageCompressionPlugin is the path where your built JPEG files are stored after the build process. For example, if the path in your project after the build is dist/static/jpg, that would be the first parameter. The second parameter is the compression setting: 100 for no compression, and the default is 50. Advantages: This package uses the images library, which has good compatibility at the lower level. In certain Docker environments, the imagemin library has many compatibility issues, so this library was developed to address those concerns. Unfortunately, it currently only supports JPEG compression.

example:

import imageCompressionPlugin from "vite-plugin-min-jpg";
export default defineConfig({
	plugins:[
		imageCompressionPlugin("dist/static/jpg" , 50)
 	]
})