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

bamboo-jd-cli

v1.0.2

Published

借助upipe流水线open api能力。使用cli工具实现流水安触发调用能力

Readme

bamboo-cli使用手册

适用于行云流水线(Bamboo)的cli使用文档

安装

npm install bamboo-jd-cli

快速开始

  1. 初始化个人token 第一次执行需要生成个人的token,需要提供统一登录平台的登录态生成使用token,登录态可在浏览器页面F12->应用->Cookie 生成的token用于在Bamboo平台进行鉴权,权限与用户本人权限一致
pipeline init ${sso.Cookie}
  1. 执行指定流水线 用户需要在Bamboo平台创建流水线,在流水线构建详情页面链接中,示例链接/platform/app/{appId}/pipelines/{appId}/buildList/{pipelineId}
pipeline run ${pipelineId}

bamboo-cli开发手册

项目初始化

1. mkdir pipeline-cli
2. npm init  //生成package.json文件
3. mkdir bin 
4. touch pipeline.js  //入口文件
5. package.json中添加"bin": {
    "pipeline": "./bin/pipeline.js"
  },输入pipeline,即执行./bin/pipeline.js文件
6. 命令行执行npm link,此包可全局执行
7. 命令行输入pipeline,代表执行./bin/pipeline.js
8. npm i commander  download-git-repo ora handlebars figlet clear chalk open watch//依赖包