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

proclubs-sdk

v0.2.1

Published

Unofficial TypeScript SDK for EA Sports FC Pro Clubs.

Readme

proclubs-sdk

npm version CI license

A small, typed Node.js SDK for the public endpoints used by EA Sports FC Pro Clubs. It validates inputs and responses, retries transient failures, and exposes stable error classes without requiring EA credentials, cookies, or a hosted relay. An optional local memory cache helps repeated requests stay lightweight.

[!WARNING] This project is not affiliated with or endorsed by Electronic Arts. The upstream API is undocumented and may change or become unavailable without notice.

Install

npm install proclubs-sdk

Requires Node.js 22.18.0 or newer and ESM.

Quick start

import { ProClubsClient } from 'proclubs-sdk'

const proclubs = new ProClubsClient()
const [club] = await proclubs.clubs.search({ name: 'ALL STAR 237' })

if (club) {
  const [info, members, matches, playoffs] = await Promise.all([
    proclubs.clubs.get({ clubId: club.clubId }),
    proclubs.members.stats({ clubId: club.clubId }),
    proclubs.matches.list({ clubId: club.clubId, limit: 5 }),
    proclubs.clubs.playoffAchievements({ clubId: club.clubId }),
  ])

  console.log({ info, members, matches, playoffs })
}

The examples use ALL STAR 237 and HEMLE FC as test clubs, and mrjordan_237 / mrjordan237 as test member names.

API

| Method | Result | | --- | --- | | clubs.search({ name, platform? }) | Promise<ClubSummary[]> | | clubs.get({ clubId, platform? }) | Promise<ClubInfo \| null> | | clubs.overallStats({ clubId, platform? }) | Promise<ClubOverallStats \| null> | | clubs.playoffAchievements({ clubId, platform? }) | Promise<PlayoffAchievement[]> | | rankings.allTime(input?) | Promise<RankingEntry[]> | | rankings.searchAllTime({ name, platform? }) | Promise<RankingEntry[]> | | rankings.currentSeason(input?) | Promise<RankingEntry[]> | | rankings.searchCurrentSeason({ name, platform? }) | Promise<RankingEntry[]> | | members.stats({ clubId, platform? }) | Promise<ClubMemberStats> | | members.careerStats({ clubId, platform? }) | Promise<ClubMemberCareerStats> | | matches.list({ clubId, platform?, type?, limit? }) | Promise<ClubMatch[]> |

Supported platforms are common-gen5 (default), common-gen4, and nx. Supported match types are friendlyMatch, leagueMatch (default), and playoffMatch.

Documentation

Preview the Mintlify documentation locally with npx mint dev.

Contributing

See CONTRIBUTING.md. Run npm run check before opening a pull request.

License

MIT