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

afsapi-client

v1.0.0

Published

Official AFSAPI client library - 98% cheaper than OpenAI. Drop-in replacement.

Readme

AFSAPI Client - 98% Cheaper than OpenAI

npm version License: MIT

Drop-in replacement for OpenAI - same API, 98% less cost.

Installation

npm install afsapi-client

Quick Start

As OpenAI Replacement (Zero Code Changes)

// Before (expensive)
const { OpenAI } = require('openai');
const openai = new OpenAI({ apiKey: 'sk-...' });

// After (98% cheaper)
const { OpenAI } = require('afsapi-client');
const openai = new OpenAI({ apiKey: 'afs-...' });

// Same code works!
const completion = await openai.chat.completions.create({
  model: 'gpt-3.5-turbo',
  messages: [{ role: 'user', content: 'Hello!' }]
});

Using AFSAPI Client Directly

const { AFSAPIClient } = require('afsapi-client');

const client = new AFSAPIClient({
  apiKey: 'your-api-key' // Get one at https://afsapi.ai
});

// Simple chat
const response = await client.chat('What is 2+2?');
console.log(response); // "4"

// Full control
const completion = await client.createChatCompletion([
  { role: 'system', content: 'You are a helpful assistant.' },
  { role: 'user', content: 'Explain quantum computing.' }
], {
  model: 'gpt-4',
  temperature: 0.7,
  max_tokens: 500
});

Environment Variables

# Option 1: Use existing OpenAI key variable
export OPENAI_API_KEY="your-afsapi-key"

# Option 2: Use AFSAPI specific variable
export AFSAPI_KEY="your-afsapi-key"

# Option 3: Custom API endpoint
export AFSAPI_URL="https://api.afsapi.ai"

Why AFSAPI?

  • 98% cheaper than OpenAI
  • 100% compatible - Drop-in replacement
  • No rate limits - Scale freely
  • Multiple providers - Automatic failover
  • $99 lifetime option available

Get Your API Key

  1. Visit https://afsapi.ai
  2. Click "Get API Key"
  3. Choose your plan (lifetime recommended)
  4. Start saving immediately

Cost Comparison

| Provider | Price per 1M tokens | Your cost with AFSAPI | |----------|-------------------|---------------------| | OpenAI GPT-3.5 | $2.00 | $0.04 (98% off) | | OpenAI GPT-4 | $60.00 | $1.20 (98% off) | | Anthropic Claude | $15.00 | $0.30 (98% off) |

Support

License

MIT - Use it anywhere, for anything.


Save thousands on AI costs. Switch to AFSAPI today.