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

@ivu-plus/i-utils

v2.0.5

Published

前端模块化 JavaScript 工具库

Readme

一站式前端模块化 JavaScript 工具库

npm version npm license

🔥 i-utils 🔥是一款功能强大、高效的一站式前端模块化 JavaScript 工具库,支持 Typescript 导入, 其集成了众多日常开发中用到的方法,覆盖字符串数组数学文件数学文件加解密算法脱敏,分页浏览器 Cookie浏览器 Clipboard浏览器 Dom微信小程序工具等多个模块,同时支持es模块化umd浏览器环境require服务端环境,满足不同场景的开发需求,大幅提升开发效率。

📦 安装

# npm
npm i @ivu-plus/i-utils --save

# pnpm
pnpm i @ivu-plus/i-utils --save

# yarn
yarn add @ivu-plus/i-utils --save

🎨 使用

es 模块环境

// 按需引入
import { testLoaded } from "@ivu-plus/i-utils";

testLoaded();

// 全量引入
import * as iUtils from "@ivu-plus/i-utils";

iUtils.testLoaded();

cjs 服务端环境

// 全量引入
const iUtils = require("@ivu-plus/i-utils");
iUtils.testLoaded();

// 按需引入
const { testLoaded } = require("@ivu-plus/i-utils");
testLoaded();

umd 浏览器环境

直接使用打包好的 umd 的包,提供常规包和 min 压缩包

<!-- <script src="dist/lib/index.full.umd.js"></script> -->
<script src="dist/lib/index.full.umd.min.js"></script>

<!-- 这里使用的实际是绑定到全局的 window.iUtils 对象 -->
<script>
  iUtils.testLoaded();
</script>

还有一种是浏览器中使用 ESM 模块引入方式

<script type="module" src="dist/es/index.mjs">
  iUtils.testLoaded();
</script>

自动导入

需要使用额外的插件来实现自动导入,IUtilsResolver解析器支持在 ViteWebpack 工具中使用。

首先需要安装自动导入插件

pnpm install unplugin-auto-import -D

vite.config.ts 中使用

import { defineConfig } from "vite";
import AutoImport from "unplugin-auto-import/vite";
import { IUtilsResolver } from "@ivu-plus/i-utils/resolver";

export default defineConfig({
  plugins: [
    AutoImport({
      resolvers: [IUtilsResolver()],
    }),
  ],
});

webpack.config.js 中使用

const AutoImport = require("unplugin-auto-import/webpack");
const { IUtilsResolver } = require("@ivu-plus/i-utils/resolver");

module.exports = {
  plugins: [
    AutoImport({
      resolvers: [IUtilsResolver()],
    }),
  ],
};

解析器提供 3 种场景

// 场景1:默认加载所有方法
IUtilsResolver();

// 场景2:追加指定方法名
IUtilsResolver(["getDate"]);

// 场景3:精细化控制(排除/只包含/追加)
IUtilsResolver({
  include: ["getUUID", "getGUID"],
  exclude: ["testLoaded"],
  append: ["formatDate"],
});

🔨 构建

工具库源码架构使用 pnpm 做为包管理工具,支持 Typescript 类型导入,打包后生成escjsumd包。

# 构建包
pnpm build

✅ 发布

npm publish

📝API 文档

常量集合 Constant

字符串
数字
数组
对象
函数
日期
数学
正则
随机数

文件
颜色
校验
键盘

生成id
加解密算法
脱敏
身份证号码
分页

浏览器 Url
浏览器 Cookie
浏览器 Storage
浏览器 Dom
浏览器 Device
浏览器 Clipboard

微信小程序工具

🔖Git 提交规范

😝 主要

fix: 修复 bug
add: 增加功能
del: 删除功能
update: 更新功能

😉 次要

docs: 文档更新
merge: 合并分支
style: 颜色、字体大小等变动(不影响代码运行)
build: 构造工具或相关依赖变更
refactor: 代码重构
revert: 撤销,版本回退

😳 一般

test: 添加或修改测试
perf: 提高性能的改动
chore: 构建过程或辅助工具的变更
ci: CI 配置,脚本文件等改动

# <type>后面英文冒号,并且后跟一个空格
git commit -m <type>(<scope>): <description>

# 举个栗子
git commit -m 'fix: 修复了xxx问题'
git commit -m 'fix(string): 修复了string工具类的xxx问题'
git commit -m 'docs: 更新了字符串模块文档'