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

@marswave/listenhub-sdk

v0.0.5

Published

JavaScript SDK for ListenHub API

Downloads

696

Readme

@marswave/listenhub-sdk

npm version license types

JavaScript SDK for the ListenHub API.

Install

npm i @marswave/listenhub-sdk

Quick start

Clone the repo and run the OAuth login example — it opens a browser, handles the callback, and prints your tokens:

git clone https://github.com/marswaveai/listenhub-sdk.git
cd listenhub-sdk
pnpm i
npx tsx examples/oauth-login.ts

Client options

const client = new ListenHubClient({
	accessToken: 'token', // static string or () => string | undefined
	baseURL: 'https://api.listenhub.ai/api',
	timeout: 30_000, // request timeout in ms
	maxRetries: 2, // max retries on 429 (default: 2)
});

Examples

| File | Description | | -------------------------------------------------------------------------- | ---------------------------------------- | | examples/basic.ts | Static token, API calls, error handling | | examples/oauth-login.ts | Browser-based OAuth login flow | | examples/create-podcast.ts | Create a duo podcast and poll for result | | examples/create-tts.ts | Text-to-speech from plain text | | examples/create-explainer-video.ts | Explainer video from a URL | | examples/create-slides.ts | Slide deck presentation | | examples/create-ai-image.ts | AI image generation from a prompt | | examples/music.ts | Music generation and cover from audio |

Documentation

| Document | Description | | ------------------------------------ | ----------------------------------------------------- | | Architecture | Module dependency diagram and responsibilities | | Client Behavior | Request/response flow, hooks, retry and refresh logic | | Testing | Test layers, running tests, mock server setup |

API

Auth

| Method | Description | | --------------------------------- | --------------------------------------------------- | | connectInit({callbackPort}) | Start OAuth flow, returns authUrl and sessionId | | connectToken({sessionId, code}) | Exchange authorization code for tokens | | refresh({refreshToken}) | Refresh an expired access token | | revoke({refreshToken}) | Revoke a refresh token |

Checkin

| Method | Description | | ----------------- | ------------------------------ | | checkinSubmit() | Submit daily check-in | | checkinStatus() | Get check-in streak and status |

Settings

| Method | Description | | -------------------- | ----------------------------------------------- | | getApiKey() | Get current API key | | regenerateApiKey() | Regenerate API key (triggers onApiKeyChanged) | | getSettings() | Get episode template settings per product type |

Content creation

| Method | Description | | ------------------------------ | ---------------------------------- | | createPodcast(params) | Create a podcast (solo/duo) | | createTTS(params) | Create a text-to-speech audio | | createExplainerVideo(params) | Create an explainer video | | createSlides(params) | Create a slides presentation | | createAIImage(params) | Generate an AI image from a prompt |

Music

| Method | Description | | ----------------------------- | ----------------------------------------- | | createMusicGenerate(params) | Generate music from a text prompt | | createMusicCover(params) | Create a cover from a reference audio URL | | getMusicTask(taskId) | Get music task status and details | | listMusicTasks(params?) | List music tasks with optional filtering |

List by product

| Method | Description | | ------------------------------ | ------------------------ | | listPodcasts(params?) | List podcast episodes | | listTTS(params?) | List TTS episodes | | listExplainerVideos(params?) | List explainer videos | | listSlides(params?) | List slides | | listAIImages(params?) | List AI-generated items | | getCreation(episodeId) | Get full creation detail | | deleteCreations({ids}) | Batch delete creations |

Users

| Method | Description | | ------------------- | -------------------------------------- | | getCurrentUser() | Get current user profile | | getSubscription() | Get subscription and credit usage info |

Speakers

| Method | Description | | ----------------------- | ----------------------------------- | | listSpeakers(params?) | List available speakers by language |

Custom requests

client.api exposes the underlying ky instance for endpoints not yet covered by the SDK:

const user = await client.api.get('v1/users/me').json();

Rate limiting

On 429 Too Many Requests, the SDK reads the Retry-After header and retries automatically, up to maxRetries times (default: 2).

License

MIT