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

aaddyy

v1.0.2

Published

Official SDK for AADDYY — 100+ AI tools via one npm package. Image generation, article writing, video creation, math solving, SEO analysis, and more.

Readme

aaddyy

Official Node.js SDK for AADDYY — 100+ AI tools via one npm package.

Install

npm install aaddyy

Quick Start

import { AADDYY } from 'aaddyy'

const client = new AADDYY() // reads AADDYY_API_KEY from env

// Generate an article
const article = await client.articles.generate({
  topic: 'AI trends in 2026',
  tone: 'professional',
  length: 'medium'
})

// Generate an image
const image = await client.images.generate({
  prompt: 'A futuristic city at sunset',
  style: 'photorealistic'
})

// Solve a math problem
const solution = await client.math.solve({
  problemText: 'Integrate x^2 from 0 to 5',
  explanationLevel: 'step-by-step'
})

All Resources

const client = new AADDYY({ apiKey: 'aip_your_key' })

// Writing
client.articles.generate({ topic, tone, length })
client.articles.outline({ topic })
client.articles.improve({ content, instructions })
client.essays.write({ topic, essayType, wordCount })
client.emails.write({ purpose, tone })
client.emails.jobEmail({ jobTitle, companyName })
client.titles.generate({ topic, count })
client.titles.seo({ topic, keywords })
client.synonyms.find({ word, context })

// Images
client.images.generate({ prompt, style, size })
client.images.upscale({ imageUrl, scale })        // async V2
client.images.removeWatermark({ imageUrl })        // async V2
client.images.createPrompt({ imageUrl })           // async V2
client.logos.create({ keyword, color, type })
client.headshots.generate({ style, gender })

// Video
client.videos.generate({ prompt, duration })
client.videos.audioToVideo({ audioUrl })           // async V2
client.videos.eduClip({ topic, duration })         // async V2

// Social
client.captions.generate({ topic, platform })
client.captions.instagram({ topic, tone })         // async V2
client.captions.linkedin({ topic, tone })          // async V2

// Education
client.math.solve({ problemText, explanationLevel })
client.physics.solve({ problemText, explanationLevel })

// SEO
client.seo.analyze({ url })
client.seo.backlinks({ url })
client.keywords.research({ topic })

Error Handling

import { AADDYY, InsufficientCreditsError, RateLimitError } from 'aaddyy'

try {
  const result = await client.articles.generate({ topic: 'AI' })
} catch (err) {
  if (err instanceof InsufficientCreditsError) {
    console.log(`Need ${err.required} credits, have ${err.available}`)
  } else if (err instanceof RateLimitError) {
    console.log('Rate limited, try again later')
  }
}

Pricing

Pay-per-use. 1 credit = $0.01. Most tools cost 1-10 credits. New accounts get 50 free credits ($0.50) — no card required.

Sign up at aaddyy.com/signup and get your API key at aaddyy.com/api-keys.

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | AADDYY_API_KEY | Yes | — | Your API key (starts with aip_) | | AADDYY_BASE_URL | No | https://backend.aaddyy.com/api | API base URL |

Links