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

@cgboiler/core

v1.2.15

Published

一个现代化的 TypeScript 工具库,提供常用的工具函数集合。

Readme

@cgboiler/core

一个现代化的 TypeScript 工具库,提供常用的工具函数集合。

特性

  • 🚀 使用 TypeScript 编写,提供完整的类型定义
  • 📦 支持 Tree Shaking,只打包使用的代码
  • 🔧 支持 ESM 和 CommonJS 两种模块格式
  • 📚 详细的文档和类型注释
  • ✅ 完整的测试覆盖

安装

npm install @cgboiler/core

# 或者使用 yarn
yarn add @cgboiler/core

# 或者使用 pnpm
pnpm add @cgboiler/core

使用

import { capitalize, unique, deepClone } from '@cgboiler/core';

// 字符串操作
console.log(capitalize('hello')); // 'Hello'

// 数组操作
console.log(unique([1, 1, 2, 2, 3])); // [1, 2, 3]

// 对象操作
const obj = { a: 1, b: { c: 2 } };
const cloned = deepClone(obj);

API 文档

字符串工具

  • capitalize(str: string): string - 将字符串的首字母转换为大写
  • camelToKebab(str: string): string - 将驼峰命名转换为短横线命名
  • kebabToCamel(str: string): string - 将短横线命名转换为驼峰命名

数组工具

  • unique<T>(arr: T[]): T[] - 数组去重
  • groupBy<T>(arr: T[], key: keyof T): Record<string, T[]> - 数组分组
  • flatten<T>(arr: (T | T[])[]): T[] - 数组扁平化

对象工具

  • deepClone<T>(obj: T): T - 深拷贝对象
  • flattenObject(obj: Record<string, any>, prefix?: string): Record<string, any> - 对象扁平化
  • pick<T, K extends keyof T>(obj: T, keys: K[]): Pick<T, K> - 选择对象中的指定属性

开发

# 安装依赖
pnpm install

# 开发模式
pnpm dev

# 构建
pnpm build

# 运行测试
pnpm test

# 代码格式化
pnpm format

# 代码检查
pnpm lint

License

MIT