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 🙏

© 2026 – Pkg Stats / Ryan Hefner

vite-plugin-img-reload

v0.1.5

Published

graphic transition effect

Downloads

1

Readme

vite-plugin-img-reload

配合 @mxnet/imagetransition 指令发挥最大功效

Usage

import { resolve } from "path";
import vitePluginImgReload from "vite-plugin-img-reload";

// 插件所有选项
export interface vitePluginImgReloadOption {
  // 资源路径
  resourcePathDir?: string;
  // 输出路径
  outputDir?: string;
}

const config = new ViteConfiguration()
  .setScenes("mobile")
  .setTechnologyStack("vue", {})
  .addAutoImport({})
  .getConfig({
    plugins: [
      inspect(),
      ImgReload({
        resourcePathDir: resolve("./src/assets/"),
      }),
    ],
  }) as UserConfig;

Principle

该插件会输出一个 css 文件, @mxnet/imagetransition 中的指令逻辑会用到该样式

@mxnet/imagetransition 中的指令有一个非常重要的参数 def 代表占位图

通常来说 在加载一个大图的时候我们不希望一个试图占位处一片空白,空白太枯燥了,当我们知道是因为网络问题造成的加载缓慢时

我们渴望看见一个轮廓后 慢慢等到图片加载 ,这时候我们需要一个占位图,但我们又不希望占位图消耗太多资源

当 插件中的 resourcePathDir 参数不为空时候,插件会去查找该路径下的所有图片并且转为极小的base64

生成一个 base64 集合文件 , 生成于 vite.root 参数路径 或指定的 outputDir 参数路径

你可以尽情的引用这个极小的资源文件

后配合 @mxnet/imagetransition 指令 当原图加载完成后 丝滑的从缩略图切换至原图

原图

ori

压缩后

ori