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 🙏

© 2025 – Pkg Stats / Ryan Hefner

airport2

v0.0.6

Published

使用`ts`编写流水线

Readme

Airport

使用ts编写流水线

bun add airport2

核心架构

Airport
├── Pipeline
│   ├── Task 1
│   │   ├── Step 1
│   │   ├── Step 2
│   │   └── ...
│   ├── Task 2
│   └── ...
├── Run: 异步处理本地命令
├── Exec: 同步处理本地命令
└── Remote: 处理远程服务器连接和操作
export {
  PipeLine, // 管道,串行执行多个Task
  Task,     // 任务,包含多个Step,可独立运行:Task().run()
  Step,     // 步骤,包含一个命令集,可独立运行:Step().run()
  run,      // 异步处理本地命令,基于`child_process.spawn`封装
  exec,     // 同步处理本地命令,基于`child_process.execSync`封装
  remote,   // 使用ssh在远程服务器执行命令,包含scp可以上传文件
  log,      // 日志输出
  logError, // 日志输出,错误日志
  color,    // 日志染色,export = chalk
}

Usage

范例:在项目根据目录下创建airport.ts文件

bun run airport.ts # 也可以将命令添加到package.json中

也可根据实际需求创建多个airport流水线

.airport
├── deploy: 常规发布
├── commit: git-commit
├── docker: docker构建、推送、部署
└── ...

bun run .airport/deploy.ts
bun run .airport/commit.ts
bun run .airport/docker.ts

Example

常规构建发布范例

import { name, version } from './package.json'
import { PipeLine, Task, remote, logError } from 'airport2'

const file = [name, version].join('-') + '.tgz'

const deployTask = new Task({
  name: '部署应用',
  steps: [
    {
      name: '构建项目',
      run: [
        'npm run build',
        'mkdir -p .cache',
        'mv `npm pack` .cache/',
      ],
    },
    {
      name: '发布到远程服务器',
      async run() {
        const ssh = remote('[email protected]')
        const dir = (path?: string) => join('/apps', name, path ?? '')

        try {
          await ssh.run('rm -f', dir('latest'))
          await ssh.run('mkdir -p', dir(version))
          await ssh.scp(`.cache/${file}`, dir())
          await ssh.run('tar -zxvf', dir(file), '-C', dir(version))
          await ssh.run('ln -s', dir(version), dir('latest'))
        }
        catch (e) {
          logError(e)
        }
      },
    },
  ],
})

PipeLine.run([deployTask])

docker构建范例

import { name, version } from './package.json'
import { PipeLine, Task } from 'airport2'

const dockerTask = new Task({
  name: '部署docker应用',
  steps: [
    {
      name: '构建docker镜像',
      run: [
        `docker build -t ${name}:latest .`,
        `docker tag ${name}:latest user/${name}:${version}`,
        `docker push user/${name}:${version}`,
      ],
    },
  ],
})

dockerTask.run()