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

robocash-checkout-preview

v1.0.4

Published

One-line React component for x402 crypto payment integration with Stripe-style UX

Readme

Robocash Checkout Preview

Note: This is a preview package published temporarily. The final package will be published as robocash-checkout under the official Robocash organization.

One-line React component for x402 crypto payment integration. Enable API monetization with crypto payments in seconds.

Installation

npm install robocash-checkout-preview

Peer Dependencies

This package requires the following peer dependencies:

npm install react react-dom @rainbow-me/rainbowkit@^2.0.0 @tanstack/react-query@^5.18.0 viem@^2.7.0 wagmi@^2.5.0

Usage

import { Checkout } from 'robocash-checkout-preview';

function App() {
  return (
    <Checkout proxyURL="https://api.example.com/protected">
      <button>Access Premium API</button>
    </Checkout>
  );
}

Note: CSS styles are automatically injected, no separate CSS import needed!

That's it! When users click the button, Robocash Checkout will:

  1. Check if the API requires payment (402 status)
  2. Parse payment requirements from the response headers
  3. Show a payment modal with wallet connection
  4. Handle the crypto payment flow
  5. Retry the API request with payment proof
  6. Cache successful payments for future requests

Features

  • 🚀 Zero Configuration - Works out of the box
  • 💳 Auto Payment Detection - Dynamically reads 402 requirements
  • 🔌 Built-in Wallet Support - MetaMask, WalletConnect, Coinbase
  • 🎨 Auto Theme Detection - Light/dark mode support
  • 💾 Smart Caching - Payments and API responses cached based on server session duration
  • 🔒 TypeScript Support - Full type safety

Next.js Integration

Robocash Checkout works seamlessly with Next.js App Router. The package includes 'use client' directives for all components.

// app/page.tsx
import { Checkout } from 'robocash-checkout-preview';

export default function Page() {
  return (
    <Checkout proxyURL="https://api.example.com/data">
      <button>Access API</button>
    </Checkout>
  );
}

Advanced Usage

<Checkout
  proxyURL="https://api.example.com/data"
  method="POST"
  headers={{ 'Custom-Header': 'value' }}
  body={{ data: 'payload' }}
  theme="dark"
  onSuccess={(response) => console.log('Success!', response)}
  onError={(error) => console.error('Error:', error)}
>
  <button>Make API Call</button>
</Checkout>

Props

  • proxyURL (required): The API endpoint to access
  • method: HTTP method (default: 'GET')
  • headers: Custom headers to include
  • body: Request body for POST/PUT requests
  • theme: 'light' | 'dark' | 'auto' (default: 'auto')
  • onSuccess: Callback when API call succeeds
  • onError: Callback when API call fails

How It Works

  1. Your server responds with HTTP 402 and payment requirements in headers:

    HTTP/1.1 402 Payment Required
    X-Payment-Requirements: {"amount":"0.01","token":"USDC","recipient":"0x...","chain":1}

If your APIs are not x402 compatible, you can make a simple gateway here https://userobo.cash/gateway to instantly transform your API into a paid endpoint with no code.

  1. Robocash Checkout automatically:
  • Parses the requirements
  • Connects user's wallet
  • Creates EIP-712 typed data
  • Gets signature from user
  • Submits payment
  • Retries request with proof
  1. Your server verifies payment and returns the protected resource

License

MIT