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

@haluo/biz

v2.0.49

Published

rich text

Readme

说明

线上 tag=online 2.0.x 分支publish 测试 tag=next 1.0.x 分支release

发布

# nrm use npm
# npm login
# cd ./packages/haluo-biz
# npm run build
npm publish --tag=beta # 测试版本
npm publish --tag=next # 预发布版本
npm publish --tag=release # 待验证的正式版
npm publish --tag=latest # 最新稳定的正式版(用户默认安装)
npm publish # 正式发布版本

安装

pnpm add @haluo/biz@online

本地调试

1、创建本地库
cd ./packages/haluo-biz
npm link # 在全局 node_modules 目录下创建符号链接,指向当前模块
npm unlink # 删除全局符号链接
npm run build:watch # 监听文件变化,自动编译

2、业务项目根目录中使用软链访问本地库
npm link @haluo/biz # 在项目的 node_modules 目录中创建符号链接,指向全局链接的模块
npm unlink @haluo/biz # 删除项目符号链接

3、查看依赖包(非必需)
npm list # 查看所有依赖包
npm list -g --depth=0 # 查看全局依赖包

4、如果热更失效,可以
rm -rf node_modules && npm i && npm link @haluo/biz && npm run dev