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

vuepress-plugin-season

v1.0.1

Published

vuepress plugin season

Readme

vuepress-plugin-season

概述

重要说明:该仓库fork的vuepress-plugin-sakura,在此基础上增加了一些静态资源,稍微修改了一下逻辑 仓库原地址:https://github.com/JabinPeng/vuepress-plugin-sakura

为什么会有这个库呢? 我在自己的博客中使用了Sakura库,但发现其一直请求着同一张图片资源,导致浏览器内存越来越大,于是我修复了这个问题,并提了PR(原作者似乎没有看到),在修复这个问题的过程中,我想为其增加新的功能,不再只是樱花,而是根据四季变化而变化,这只是一个简单的改变,考虑与原库名意义不再相同,便改名为season。

希望使用者能给原库一个star,支持原库作者。

升级相关

  • [ ] 更换更好的图片
  • [ ] 四季图片改为每月一张
  • [ ] 不同的主题,例:飘落,水果,花草等

说明:我希望有小伙伴能够协助我实现上述升级,目前每一个季节只有一张图片,而且夏天和冬天的图片并不令我满意,希望有人能提供图片,扩充默认图片,谢谢!

init

npm install vuepress-plugin-season -S

usage

["season", {
      num: 20,  // 数量
      show: true, //  是否显示
      zIndex: 10,   // 层级
      img: {
        replace: false,  // false 默认图 true 换图 需要填写httpUrl地址
        // 如果要替换图片,再配置下面的图片地址
        // 你只需要替换自己想替换的季节,不想替换的不写便使用默认的图片
        // 默认图片为:春天落樱,夏天气泡,秋天枫叶,冬天飞雪。
        httpUrl:{
            spring: '...',
            summer: '...',
            autumn: '...',
            winter: '...'
        }
      }
    }],