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

@purpleflea/sdk

v1.0.0

Published

Official Node.js SDK for Purple Flea services (Casino & Trading)

Readme

@purpleflea/sdk

Official Node.js SDK for Purple Flea services — Casino and Trading.

Installation

npm install @purpleflea/sdk
yarn add @purpleflea/sdk
pnpm add @purpleflea/sdk

Quick Start

Casino

import { CasinoClient } from "@purpleflea/sdk";

const casino = new CasinoClient({ apiKey: "pk_live_..." });

// Register a new user
const user = await casino.register({
  username: "lucky7",
  email: "[email protected]",
});

// Deposit funds
const deposit = await casino.deposit({ amount: 100, currency: "USD" });

// Browse games
const games = await casino.listGames();

// Withdraw winnings
const withdrawal = await casino.withdraw({
  amount: 50,
  currency: "USD",
  address: "0xabc...",
});

// Check referrals
const referrals = await casino.getReferrals();

Trading

import { TradingClient } from "@purpleflea/sdk";

const trading = new TradingClient({ apiKey: "pk_live_..." });

// Register a trading account
const user = await trading.register({
  username: "trader1",
  email: "[email protected]",
});

// List available markets
const markets = await trading.listMarkets();

// Open a position
const position = await trading.openPosition({
  marketId: "btc-usd",
  side: "long",
  size: 1.5,
  leverage: 10,
});

// List open positions
const positions = await trading.listPositions();

// Close a position
await trading.closePosition(position.id);

// Check referrals
const referrals = await trading.getReferrals();

Configuration

Both clients accept a ClientConfig object:

interface ClientConfig {
  /** API key for authentication. */
  apiKey: string;
  /** Override the default base URL (https://api.purpleflea.com). */
  baseUrl?: string;
}

API Reference

CasinoClient

| Method | Description | | --- | --- | | register(data) | Register a new casino user | | deposit(data) | Create a deposit | | listDeposits() | List all deposits | | listGames() | List available games | | getGame(id) | Get a game by ID | | withdraw(data) | Request a withdrawal | | listWithdrawals() | List all withdrawals | | getReferrals() | Get referral info |

TradingClient

| Method | Description | | --- | --- | | register(data) | Register a trading account | | listMarkets() | List available markets | | getMarket(id) | Get a market by ID | | openPosition(data) | Open a new position | | listPositions() | List open positions | | getPosition(id) | Get a position by ID | | closePosition(id) | Close a position | | getReferrals() | Get referral info |

License

MIT