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

@airnauts/airside-extension-github

v0.10.1

Published

Create GitHub issues from comment threads (server extension).

Readme

@airnauts/airside-extension-github

GitHub Issues thread-action extension for the Airside server. Adds a "Create GitHub issue" button to each comment thread; clicking it opens a GitHub issue pre-filled with the thread content and stores the issue link back on the thread.

Installation

pnpm add @airnauts/airside-extension-github

Quick start

import { createAirsideServer } from '@airnauts/airside-server'
import { githubExtension } from '@airnauts/airside-extension-github'

createAirsideServer({
  repository,
  storage,
  secretKey: process.env.AIRSIDE_SECRET!,
  projectId: 'my-app',
  allowedOrigins: ['https://my-app.example.com'],
  extensions: githubExtension({
    token: process.env.AIRSIDE_GITHUB_TOKEN!,
    owner: 'your-org',
    repo: 'your-repo',
  }),
})

The action appears in the thread toolbar. Once a GitHub issue has been created for a thread, the button hides itself — so repeated presses create only one issue. The issue URL is stored as an externalLink on the thread and shown in the UI.

Authentication

Authenticate with a fine-grained personal access token (PAT) scoped to the single target repository with Issues: write — least privilege for v1. The token is sent as authorization: Bearer <token>.

That same Bearer header also accepts a GitHub App installation token a host mints itself, so moving to App-based auth later is a host concern with no configuration change here (ADR-0049).

API reference

githubExtension(opts)

githubExtension({
  token: string     // GitHub token (fine-grained PAT or App installation token) (required)
  owner: string     // Repository owner / org, e.g. "acme" (required)
  repo: string      // Repository name, e.g. "web" (required)
  baseUrl?: string  // API base URL (default "https://api.github.com"; set for GitHub Enterprise Server)
  labels?: string[] // Labels applied to every created issue
}): ServerExtension[]

All three required fields (token, owner, repo) are validated at construction time — a missing value throws immediately so misconfiguration fails fast.

GitHubConfig

type GitHubConfig = {
  token: string
  owner: string
  repo: string
  baseUrl?: string
}

GitHubExtensionOptions

GitHubConfig plus an optional labels?: string[] array.

Configuration / env vars

| Env var | Description | |---|---| | AIRSIDE_GITHUB_TOKEN | GitHub token (fine-grained PAT, Issues: write). Deliberately not GITHUB_TOKEN, which GitHub Actions auto-injects scoped to the CI repo. | | AIRSIDE_GITHUB_OWNER | Repository owner / org, e.g. acme | | AIRSIDE_GITHUB_REPO | Repository name, e.g. web |

Requirements

  • Node.js ≥ 18 (or any fetch-capable runtime)
  • A GitHub repository with Issues enabled (GitHub.com or Enterprise Server)

Related packages

  • @airnauts/airside-server — defines ServerExtension and ThreadActionExtension
  • @airnauts/airside-extension-jira — Jira Cloud thread-action extension
  • @airnauts/airside-extension-slack — Slack notification extension
  • @airnauts/airside-extension-email — email notification extension

License

MIT © Airnauts