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

cloud-deck-js-sdk

v0.4.4

Published

obvcloud-cloud-deck

Readme

cloud-deck

NPM version NPM downloads

Install

$ pnpm install
$ npm run dev
$ npm run build

Options

TODO

发布

通常仅需 4 步即可完成普通 NPM 包发布,monorepo 项目请参考各自 monorepo 方案的发包实践。

前置工作

  1. 执行 npm whoami 查看当前用户是否已经登录,如果未登录则执行 npm login
  2. 检查 package.json 中的 NPM 包名及 publishConfig 是否符合预期

更新版本号

使用 npm version 命令更新版本号,例如:

# 发布一个 patch 版本
$ npm version patch -m "build: release %s"

该命令将会自动生成 git tag 及 git commit,并将版本号更新到 package.json 中。更多用法可参考 NPM 文档:https://docs.npmjs.com/cli/v8/commands/npm-version

构建及发布

father 4 的脚手架默认已将 项目体检命令 及构建命令配置到 prepublishOnly 脚本中:

  "scripts": {
    ...
+   "prepublishOnly": "father doctor && npm run build"
  },

所以我们只需要执行发布即可:

# NPM 会自动执行 prepublishOnly 脚本然后完成发布
$ npm publish

后置工作

  1. **功能验证:**使用测试项目下载新发布的 NPM 包,验证功能是否正常
  2. **更新日志:**将本次发布的变更通过 GitHub 的 Release Page 进行描述,也可以选择在前置工作中将变更描述写入 CHANGELOG.md 文件(未来 father 会提供自动化的更新日志生成能力,敬请期待)