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

@babbage/go

v0.1.15

Published

A polished, production-minded BRC-100 WalletInterface wrapper with sleek funding & onboarding UX for the MetaNet/BRC-100 world.

Readme

@babbage/go

A production-minded BRC-100 WalletInterface wrapper that keeps onboarding, error handling, and funding flows conversion-focused. Babbage Go now ships with an opinionated emotional design system so Metanet apps can feel branded from the very first modal.

Quick start

npm i @bsv/sdk @babbage/go
import BabbageGo from '@babbage/go'

const wallet = new BabbageGo()
await wallet.createAction({
  description: 'Launchpad mint',
  outputs: [{
    satoshis: 1,
    script: '016a',
    outputDescription: 'Generic Token'
  }]
})

Pulse Bloom design system

Our new Pulse Bloom system gives every interaction an immediate tone without forcing you to hand-roll CSS. It blends glassy layers, tactile buttons, and emotional color grading while remaining fully overridable.

| preset | vibe | When to use | | --- | --- | --- | | auroraPulse (default) | cool neon optimism | consumer onboarding, read receipts, progressive disclosure | | emberLagoon | warm ritualized concierge | premium drops, tips, funding prompts | | midnightHalo | crisp editorial minimalism | enterprise dashboards, light-mode sites |

Custom controls

  • Token overrides for every color, shadow, font, and card radius (design.tokens).
  • Button geometry via buttonShape: 'pill' | 'soft' | 'sharp'.
  • Drop-in brand CSS with design.customCss (legacy styles still works and is merged automatically).
  • Modal copy for wallet-unavailable + funding flows remains configurable via their respective option blocks.

Examples

1. Aurora Pulse onboarding

const wallet = new BabbageGo(undefined, {
  showModal: true,
  design: {
    preset: 'auroraPulse',
  },
})

2. Ember Lagoon funding concierge

const wallet = new BabbageGo(undefined, {
  design: { preset: 'emberLagoon' },
  funding: {
    title: 'Need a quick top up?',
    introText: 'Add a little fuel then smash retry — we will hold your action in place.',
    postPurchaseText: 'Sats topped? Hit retry and we will complete everything instantly.',
    buySatsText: 'Buy sats fast',
    retryText: 'Retry the action',
    cancelText: 'Cancel for now',
    buySatsUrl: 'https://satoshis.babbage.systems',
  },
})

3. brand-tuned tokens & custom css

const wallet = new babbagego(undefined, {
  design: {
    preset: 'midnighthalo',
    tokens: {
      accentbackground: 'linear-gradient(135deg, #ff6fdb, #855cff)',
      accenttext: '#080814',
      accenthoverbackground: '#ffe8f9',
      accenthovertext: '#320845',
      buttonshape: 'pill',
      cardradius: '32px',
    },
    customcss: `
      .bgo-card {
        border-width: 2px;
        animation: bgo-fade 320ms ease;
      }
      @keyframes bgo-fade {
        from { transform: translatey(12px); opacity: 0; }
        to { transform: translatey(0); opacity: 1; }
      }
    `,
  },
})

4. Babbage todo-ts Application With SatoshiShopClient Funding Integration

const wallet = new babbagego(undefined, {
  monetization: {
    developerIdentity: '02a0647.....1149ea1291d1a73783d1b7b3a7a220',
    developerFeeSats: 300
  },
  funding: {
    title: 'More Satoshis Needed',
    introText: 'Satoshis are needed perform this action, or you can cancel it.',
    buySatsText: 'Buy Satoshis',
    source: 'satoshiShopClient'
  }
})

License

Open BSV © 2025 P2PPSR