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

@rtpr-io/rtpr

v0.1.0

Published

Official Node.js SDK for RTPR — real-time press releases in under 500ms

Downloads

31

Readme

RTPR Node.js SDK

Official Node.js/TypeScript SDK for RTPR — real-time press releases in under 500ms.

Installation

npm install @rtpr-io/rtpr

Quick Start

REST API

import { RtprClient } from "@rtpr-io/rtpr";

const client = new RtprClient("your_api_key");

// Get recent articles across all tickers
const articles = await client.getArticles(10);
for (const article of articles) {
  console.log(`[${article.ticker}] ${article.title}`);
}

// Get articles for a specific ticker
const aapl = await client.getArticlesByTicker("AAPL");

WebSocket Streaming

import { RtprWebSocket } from "@rtpr-io/rtpr";

const ws = new RtprWebSocket("your_api_key");

ws.onArticle((article) => {
  console.log(`[${article.ticker}] ${article.title}`);
});

await ws.connect(["AAPL", "TSLA"]);

Firehose (All Tickers)

await ws.connect(["*"]);

API Reference

new RtprClient(apiKey, options?)

REST client for querying articles.

| Option | Type | Default | Description | |--------|------|---------|-------------| | baseUrl | string | https://api.rtpr.io | API base URL | | timeoutMs | number | 30000 | Request timeout in milliseconds |

Methods:

  • getArticles(limit?) — Recent articles across all tickers (default limit: 20, max: 100)
  • getArticlesByTicker(ticker, limit?) — Articles for a specific ticker (default limit: 50, max: 100)
  • health() — API health check

All methods return Promises.

new RtprWebSocket(apiKey, options?)

Real-time WebSocket streaming client with auto-reconnect and exponential backoff.

| Option | Type | Default | Description | |--------|------|---------|-------------| | wsUrl | string | wss://ws.rtpr.io | WebSocket URL | | autoReconnect | boolean | true | Reconnect on disconnect |

Methods:

  • connect(tickers?) — Connect and start streaming (returns a Promise)
  • subscribe(tickers) — Add tickers to subscription
  • unsubscribe(tickers) — Remove tickers (pass ["*"] to clear all)
  • stop() — Disconnect and prevent reconnection
  • connectedboolean property for connection state

Event handlers (chainable):

  • onArticle(callback) — New article received
  • onConnect(callback) — Connection established
  • onDisconnect(callback) — Connection lost
  • onError(callback) — Error occurred

Article

| Field | Type | Description | |-------|------|-------------| | ticker | string | Primary stock ticker | | title | string | Article headline | | author | string | PR wire source (Business Wire, PR Newswire, etc.) | | created | string | ISO timestamp | | articleBody | string | Plain text body | | articleBodyHtml | string | Original HTML body | | exchange | string | Exchange name | | id | string | Unique article ID | | tickers | string[] | All associated tickers |

Errors

| Class | Status | Description | |-------|--------|-------------| | RtprError | varies | Base error class | | AuthenticationError | 401 | Invalid or missing API key | | RateLimitError | 429 | Exceeded 60 requests/minute | | ConnectionError | — | WebSocket connection failure |

Requirements

  • Node.js 18+
  • TypeScript 5+ (if using TypeScript)