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

@esdora/kit

v0.6.0

Published

A library of tools commonly used for development

Downloads

23

Readme


@esdora/kitDora Pocket 项目中提供的第一个核心“道具箱”。它是一套经过严格测试、类型安全且零依赖的 TypeScript/JavaScript 工具函数库。

✨ 理念

我们的核心理念是 补充,而非替代

我们尊重并推荐像 LodashES-Toolkit 这样优秀的、久经考验的基础工具库。因此,@esdora/kit 不会重复造轮子去实现它们已经做得足够好的功能。

我们专注于提供那些在特定场景下极具价值、能够解决具体痛点,或是对现有原生 API 进行更友好封装的函数。

🚀 安装

通过你喜欢的包管理器来安装它:

# pnpm
pnpm add @esdora/kit

# npm
npm install @esdora/kit

# yarn
yarn add @esdora/kit

💡 使用

在你的项目中,直接从 @esdora/kit 导入你需要的函数即可。

import { checkCircularReference } from '@esdora/kit'

const userProfile = { name: 'Alice' }
userProfile.self = userProfile

if (checkCircularReference(userProfile)) {
  console.log('检测到循环引用!')
  // => 检测到循环引用!
}

📖 完整文档

想要了解所有可用的函数、详细的 API 和更多示例吗?

👉 请访问我们的官方文档网站

🤝 参与贡献

@esdora/kit 是一个开放且由社区驱动的模块。如果你有好的想法或想要修复一个 Bug,我们非常欢迎!

请参考主仓库的 贡献指南 来了解如何参与。

📜 许可证

MIT © Esdora