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

@thisismissem/adonisjs-atproto-tap

v2.0.1

Published

Adonis.js provider for AT Protocol Tap Client

Readme

AdonisJS AT Protocol Tap

This package provides a small Adonis.js provider and services for @atproto/tap, which allows interacting with Tap for AT Protocol development.

Installation

node ace add @thisismissem/adonisjs-atproto-tap

Configuring

If you didn't use node ace add you can later run the configuration using:

node ace configure @thisismissem/adonisjs-atproto-tap

Indexer

The Tap Indexer (SimpleIndexer) can be accessed using:

import indexer from '@thisismissem/adonisjs-atproto-tap/services/indexer'

If you've installed using the instructions above, you will have the file start/indexer.ts created, which is where you can add the logic to handle the events from Tap. The provider automatically connects the indexer.error() handler to the Adonis.js logger.

You can find out more in the @atproto/tap documentation

Tap API

The Tap Client API for adding and removing repositories, resolving DIDs and such is accessible via:

import tap from '@thisismissem/adonisjs-atproto-tap/services/tap'

Which provides the following methods for interacting with the Tap server:

  • addRepos(dids: string[]): Promise<void> - Add repos to track (triggers backfill)
  • removeRepos(dids: string[]): Promise<void> - Stop tracking repos
  • resolveDid(did: string): Promise<DidDocument | null> - Resolve a DID to its DID document
  • getRepoInfo(did: string): Promise<RepoInfo> - Get info about a tracked repo

Docker Setup for Tap

To run Tap locally, you'll likely want a docker-compose.yaml file with the following contents:

services:
  tap:
    image: ghcr.io/bluesky-social/indigo/tap:latest
    platform: linux/amd64
    restart: unless-stopped
    healthcheck:
      test: ["CMD", "curl", "-f", "http://localhost:2480/health"]
      interval: 2s
      retries: 5
      start_period: 10s
      timeout: 10s
    volumes:
      - ./data/tap:/data
    env_file: tap.env
    environment:
      TAP_BIND: :2480
    ports:
      - "127.0.0.1:2480:2480"

The tap.env file looks like:

TAP_SIGNAL_COLLECTION=fyi.questionable.actor.profile
TAP_COLLECTION_FILTERS=fyi.questionable.*
TAP_ADMIN_PASSWORD=admin-password

For the full configuration see the Tap documentation. You cannot use TAP_WEBHOOK_URL with this package, since it depends on the WebSocket interface.