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

myaispeed

v1.0.0

Published

Test your connection speed to every major AI provider from the terminal

Readme

⚡ MyAISpeed CLI

Test your connection speed to every major AI provider from the terminal.

Measure TTFB (Time to First Byte) latency to 13+ AI providers including OpenAI, Anthropic, Google Gemini, Grok, Mistral, and more — all from a single command.

Quick Start

npx myaispeed

No API keys needed. No configuration. Just run it.

Installation

For repeated use, install globally:

npm install -g myaispeed

Then run:

myaispeed

Usage

myaispeed [options]

Options:
  --json       Output results as JSON
  --help, -h   Show help message
  --version    Show version number

Visual Output

npx myaispeed
  ⚡ MyAISpeed | AI Latency Test
  ────────────────────────────────────────────────────────

   1. OpenAI                 82ms  ████████
   2. Groq                   95ms  █████████
   3. Anthropic             112ms  ███████████
   4. Google Gemini         134ms  █████████████
   5. Mistral               148ms  ██████████████
   6. Cohere                167ms  ████████████████
   7. Perplexity            189ms  ██████████████████
   8. Together AI           203ms  ████████████████████
   9. DeepSeek              245ms  ████████████████████████
  10. Grok                  267ms  ██████████████████████████
  11. AI21 Labs             298ms  █████████████████████████████
  12. Fireworks AI          312ms  ██████████████████████████████
  13. Replicate             345ms  ██████████████████████████████████

  Tested 13 providers | myaispeed.com

JSON Output

npx myaispeed --json
[
  {
    "provider": "OpenAI",
    "slug": "openai",
    "latency": 82,
    "success": true
  },
  {
    "provider": "Anthropic",
    "slug": "anthropic",
    "latency": 112,
    "success": true
  }
]

What It Measures

MyAISpeed measures the Time to First Byte (TTFB) — the round-trip latency from your machine to each AI provider's API endpoint. This tells you:

  • Which AI providers are fastest from your location
  • How your network conditions affect AI API performance
  • Whether a provider is experiencing latency issues

Results vary by geography, ISP, and network conditions. Run the test multiple times for a more accurate picture.

Providers

Tests connection speed to all major AI providers including:

  • OpenAI
  • Anthropic (Claude)
  • Google Gemini
  • Grok (xAI)
  • Mistral
  • Groq
  • Cohere
  • Perplexity
  • Together AI
  • DeepSeek
  • AI21 Labs
  • Fireworks AI
  • Replicate

The provider list is fetched dynamically, so new providers are added automatically.

Requirements

  • Node.js 18.0.0 or later (uses native fetch)
  • Internet connection

Web Version

Run the same test in your browser at myaispeed.com.

API & Developers

Build your own integrations with the MyAISpeed API. Documentation available at myaispeed.com/developers.

License

MIT — see LICENSE for details.

Copyright (c) 2026 Reflect Memory, Inc.