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

@gaiot/agent-cli-sdk

v2.4.5

Published

aiot agent client js sdk

Downloads

3

Readme

@aiot/agent-cli-sdk:

依赖安装

yarn install

yarn 安装可参考:https://blog.csdn.net/qq_45112637/article/details/125543953

yarn start,运行模板项目。

贡献代码

git switch master,切换分支 master。

git pull,获取 master 最新代码。

git switch –c feature/xxx,在 master 分支下创建并切换到新分支 feature/xxx。

在新分支编写代码。

git add .,把所有文件修改添加到暂存区。

git commit -m "备注信息",将暂存区内容添加到本地仓库。

git push,把本地仓库的更新推到远程仓库。

分支代码完成后提 PR,将分支feature/xxxmerge 到 develop 分支。

  • 若有冲突,git switch feature/xxx切换到该分支,然后git pull origin develop,手动解决冲突之后再次提交代码。
  • 没有冲突且测试没有问题,再提 PR,将 develop 分支 merge 到 master 分支。

更换远程仓库

可向自己的代码仓库提交代码,不要在模板项目上提交代码哦~

关联远程库例子:git remote add origin git@server-name:path/repo-name.git,可参考https://www.liaoxuefeng.com/wiki/896043488029600/898732864121440。

git add .,把所有文件修改添加到暂存区。

git commit -m "备注信息",将暂存区内容添加到本地仓库。

git push,把本地仓库的更新推到远程仓库。

代码提交规范:

@commitlint/config-conventional

{
  'build': 打包
  'chore': 性能,
  'ci': 脚手架/工程化,
  'docs': 文档,
  'feat' : 新功能,
  'fix': 修改bug,
  'perf': 性能优化,
  'refactor': 重构,
  'revert': 回退,
  'style': 样式,
  'test': 单元测试
}

举个例子

git commit -m "fix: some bug"

git commit -m "feat: some feautre"