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

@cee.bio/runtime

v0.7.4

Published

Components, widgets, and hooks for cee.bio profile authoring (used by @cee.bio/cli scaffolds).

Readme

@cee.bio/runtime

Componentes, widgets e hooks usados pelos scaffolds do @cee.bio/cli pra montar um profile.tsx. No cee dev esse pacote renderiza localmente (com mocks); em produção o servidor cee.bio externaliza ele e injeta as implementações reais com acesso aos dados da conta.

npm i @cee.bio/runtime
import { CeeProvider, Card, Avatar, Name, Bio, DiscordWidget } from '@cee.bio/runtime';

export default function Profile() {
  return (
    <CeeProvider>
      <Card>
        <Avatar />
        <Name />
        <Bio />
        <DiscordWidget />
      </Card>
    </CeeProvider>
  );
}

Componentes base

Tudo que o profile.tsx clássico precisa:

  • Card — wrapper principal do bloco de perfil.
  • Avatar — foto + frame (decorations).
  • Name — display name + handle.
  • Bio — texto livre formatado.
  • Tags — chips de interesse/persona.
  • SocialLinks — ícones com link pras redes vinculadas.
  • Badges — emblemas conquistados.
  • Links — lista de links autorais (estilo linktree).
  • Music — embed de player (Spotify/Apple/YouTube Music).

Widgets

Blocos plugáveis com dados em tempo real (todos com mock no cee dev):

  • DiscordWidget — presence ao vivo (status, jogo, Spotify, voz).
  • YoutubeWidget — último vídeo / live atual.
  • GithubWidget — heatmap + repos pinados.
  • RobloxWidget — status online + jogo atual.
  • SteamWidget — playing now + biblioteca recente.
  • ValorantWidget — rank, último match, skin pinada.
  • StackWidget — stack de tech agrupada.
  • CustomWidget — bloco livre com imagens + CTAs.

Hooks

Pra quem quer montar UIs próprias sem usar os widgets prontos:

  • useCee() — acessa o CeeUser atual e helpers do provider.
  • useDiscordPresence() — singleton WS, ref-counted entre componentes.
  • useWidgetData() — fetch com cache + dedup + fallback mock no dev.
  • useCeeApi() — abstrai chamadas pro backend cee.bio passando pelo proxy /__cee quando em cee dev.

Mocks

  • mockUserCeeUser completo pra renderizar tudo sem login.
  • mockPresence(overrides?) — gera um DiscordPresence falso pros hooks/widgets quando você quer testar sem WS real.

Docs

Lista completa de props, tipos e exemplos: https://cee.bio/devs