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

@block-auth.io/blockauth-sdk-react

v0.9.3

Published

Block-Auth Auth SDK is a SaaS service blockchain based authentication service. It provides a simple and secure way to authenticate users in your application.

Readme

blockauth-sdk-react

This is a SDK-react for the BlockAuth project. It is a React component library that uses the SDK to interact with the BlockAuth smart contracts and Websocket server.

pipeline status coverage report Latest Release

How to use?

Use the official documentation at block-auth.io to learn how to use the SDK.

Connecting using credentials

After picking your preferred client, you are ready to make your first call to the Protocol SDK. Below is an example of how to connect your users with the BlockAuth SDK using React. We will focus the example over 2 main components FlowBlockAuth and DropdownProfile that will help you to connect your users with the BlockAuth SDK.

User actions 1/3: Click on button

Component which starts the sign in/sign up flows

blockauth-sdk-react

User actions 2/3: Connect with a service

| before connect | after connect | | :-------- | :------- | | blockauth-sdk-react | blockauth-sdk-react |

User actions 3/3: Authorize Log In

Component which shows the user profile and allows to log out

blockauth-sdk-react

Security notice: apiSecret is deprecated in the browser

FlowBlockAuth / BlockAuthRuntime historically accepted an apiSecret prop. Never use it in a production frontend: any secret shipped in a browser bundle is readable by every visitor and must be considered compromised (rotate it immediately in the dashboard). The prop is now deprecated, defaults to an empty string, and the SDK logs a runtime deprecation warning when a non-empty apiSecret reaches the browser.

The supported flow keeps the apiSecret on your backend and issues short-lived session material to the browser; it is available with the @block-auth.io/react package (monorepo).

MetaMask RPC configuration

The SDK does not ship any RPC endpoint or API key. If your integration uses the MetaMask RPC features (balances, contracts, adding chains), provide your own endpoint through the BlockAuthAppProvider config:

<BlockAuthAppProvider
  config={{ metamask: { network: { rpcUrl: 'https://your-rpc-endpoint' } } }}
>

If no rpcUrl is configured, RPC operations will fail with a clear error. Remember to restrict your RPC project key by allowed origins in your provider panel (e.g. Infura).

Debug logging

SDK debug logs are disabled by default. To enable them temporarily (development only), set the following flag in the browser before loading the app:

window.__BLOCKAUTH_DEBUG__ = true

Debug logs never include secrets, tokens or raw server responses.

Development

Install dependencies

  npm install

CI/CD

  npm run ci

Start the development server

  npm run dev

After making changes to the code, run the following command to format the code, run the linter, and start the development server:

  npm run css && npm run lint && npm run format && npm run dev

NPM Scripts

| Script | Description | | :-------- | :------- | | dev | Starts the development server | | css | Builds the CSS | | css:dev | Builds the CSS in development mode | | test | Runs the tests and generates a coverage report | | lint | Runs the linter | | lint:fix | Runs the linter and fixes the errors | | format | Formats the code | | build | Builds the app for production | | preview | Builds the app for production and previews it locally | | ci | Runs the tests, linter, and code formatter | | stories | Starts the Storybook server | | stories:build | Builds the Storybook app for production | | docs | Starts the documentation server | | docs:build | Builds the documentation app for production | | clean | Removes dist, dist-stories, dist-docs, package-lock.json, .coverage and node_modules |

NPM Publish

  yarn publish

Authors

Block-Auth.io Team