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

@bluxcc/react

v0.2.0

Published

Connecting to the Stellar Ecosystem and Beyond

Downloads

669

Readme

Blux Wallet Kit - The Missing Piece for Stellar dApps

Blux is a comprehensive authentication and wallet connect kit designed for Stellar dApps. It simplifies onboarding by integrating multiple authentication methods, including wallets, email, phone, and OAuth. With Blux, developers can create seamless multi-auth experiences without the complexity of building custom authentication solutions from scratch.

Features

  • Multi-Wallet Support: Easily integrate Stellar wallets such as Rabet, xBull, Lobstr, Freighter, and Albedo.
  • OAuth & Social Login (Coming Soon): Support for Apple, Meta, Google, and more.
  • Email & Phone Authentication (Coming Soon): Securely onboard users with non-crypto credentials.
  • Customizable UI: Adjust themes, fonts, backgrounds, logos, border radius, and text colors.
  • Configurable Networks: Set up and modify network preferences via API keys.
  • Future-Proof: More wallets and authentication methods will be added based on community feedback.

Installation

Blux can be installed via npm:

npm i @bluxcc/react

or using yarn:

yarn add @bluxcc/react

Usage

Import Blux and set up the authentication flow:

import { BluxProvider, useBlux, networks } from '@bluxcc/react';

const ConnectButton = () => {
  const { login } = useBlux();

  return <button onClick={login}>Login</button>;
};

const App = () => {
  const config = {
    appName: 'Your App',
    networks: [networks.mainnet, networks.testnet],
    defaultNetwork: networks.mainnet,
  };

  return (
    <BluxProvider config={config}>
      <ConnectButton />
    </BluxProvider>
  );
};

export default App;

Customization

Developers can customize various UI elements:

  • Themes & Fonts
  • Backgrounds, Logos
  • Border Radius & Text Colors
  • Authentication Limits (Free tier supports 500-1000 accounts per auth method)

Configuration options can be set via the BluxProvider config or environment variables.

Supported Wallets

Currently supported connection methods:

  • [x] Rabet
  • [x] xBull
  • [x] Lobstr
  • [x] Freighter
  • [x] Albedo
  • [ ] Ledger
  • [ ] Trezor
  • [x] Hana
  • [ ] WalletConnect
  • [ ] OAuth
  • [ ] Email
  • [ ] Phone

License & Usage Restrictions

  • No Production Use Until 2028: This software is provided under the Blux Team License with restrictions on production use.
  • No Forking or Unauthorized Modifications: Removing references to Blux Team or forking without attribution is strictly prohibited.
  • Custom Licensing Available: Contact us at [email protected] to discuss licensing options.

Support & Contact

For support, licensing, or inquiries, reach out via:

Roadmap & Future Plans

Blux is evolving. Follow our updates on X (Twitter) for:

  • OAuth Authentication (Apple, Meta, Google, etc.)
  • Email & Phone-Based Authentication
  • More Wallet Integrations
  • Enhanced Customization & Security Features

Stay tuned. We have many exciting developments ahead!