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

cross-connection

v0.2.4

Published

Security-first Axios alternative HTTP client for TypeScript, Node.js, and browsers with retries, SSRF protection, interceptors, and cancellation

Readme

CrossConnection

npm version npm downloads license

A security-first Axios alternative for TypeScript, Node.js, browsers, and edge runtimes.

CrossConnection gives you an Axios-like developer experience with production-focused protections such as SSRF mitigation, retry backoff, telemetry hooks, request cancellation, and safe logging.

Links

  • npm package: https://www.npmjs.com/package/cross-connection
  • GitHub repository: https://github.com/pratul03/cross-connection
  • Live docs and demos: https://cross-connection-ui.vercel.app

Why CrossConnection

  • Axios-like API with stronger secure defaults
  • Built-in retry policies with exponential backoff and jitter
  • SSRF controls for private IPs, localhost, and host allowlists
  • Interceptors, transforms, and telemetry hooks for observability
  • AbortSignal and CancelToken cancellation support
  • Header redaction helpers for safe logging

Installation

npm install cross-connection

Quick Start

import { createCrossConnection } from "cross-connection";

const client = createCrossConnection({
  baseURL: "https://api.example.com",
  timeout: 8000,
  retry: {
    retries: 2,
    baseDelayMs: 150,
    maxDelayMs: 2000,
  },
});

const response = await client.get<{ ok: boolean }>("/health");
console.log(response.data.ok);

Secure Client Example

import { CrossConnection } from "cross-connection";

const client = new CrossConnection({
  security: {
    blockPrivateIPs: true,
    blockPrivateIPv6: true,
    blockLocalhost: true,
    allowHosts: ["api.example.com", "*.trusted.internal"],
    redactHeaders: ["authorization", "cookie", "x-api-key"],
  },
  retry: {
    retries: 3,
    baseDelayMs: 120,
    maxDelayMs: 1200,
  },
});

Feature Highlights

  • HTTP methods: get, post, put, patch, delete, head, options, request
  • Interceptors: client.interceptors.request.use and client.interceptors.response.use
  • Data transforms: transformRequest and transformResponse
  • Security options: SSRF guards, DNS rebinding checks, host allowlists
  • Reliability controls: retry policies, timeout handling, telemetry callbacks
  • Crypto and transport hardening: AES-256-GCM request encryption and optional TLS fingerprint pinning in Node.js

Documentation

Development

npm install
npm run test
npm run build

License

MIT