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

tarxemo-react-authz

v0.2.5

Published

A reusable React library for integrating with tarxemo-django-authz

Readme

tarxemo-react-authz

A high-performance, premium React UI permission management library designed for tarxemo-django-authz v0.3.0+. It features zero-configuration component discovery, batched synchronization, and a sleek management interface.

v0.2.0 Highlights (Intensive Update)

  • 🚀 Batched Sync: Automatically batches all UI element registrations into a single network request per mount cycle.
  • 💎 Premium UI: Redesigned Manager Modal with glassmorphism, smooth transitions, and real-time validation feedback.
  • 🧩 PBAC Support: Support for Policy-Based Access Control via objId and context props.
  • Standardized Protocol: Full integration with backend standardized DTOs for robust error handling.

Installation

npm install tarxemo-react-authz

Required peer dependencies: @apollo/client, graphql, lucide-react, classnames.

Setup

Wrap your application in the AuthzProvider. It now features an optimized synchronization engine.

import { AuthzProvider } from 'tarxemo-react-authz';

export function App() {
  const { user, updateAuthz } = useUser();
  
  return (
    <AuthzProvider 
       userAuthorizedUiElements={user?.authorizedUiElements || []}
       onUpdateAuthorizedUiElements={updateAuthz}
       syncDebounceMs={50} // Optional debounce time for batch sync
    >
       <MainLayout />
    </AuthzProvider>
  );
}

Usage

Protect any component with <AuthzUI>. Components discovered on the frontend are automatically registered in the backend registry in one efficient batch.

import { AuthzUI } from 'tarxemo-react-authz';

function UserRow({ user }) {
  return (
    <tr>
      <td>{user.name}</td>
      <td>
        <AuthzUI 
          id="row-delete-btn" 
          requiredPermissions={['users.delete']}
          description="Deletes a user from the management table"
          objId={user.id} // Supports PBAC ownership checks
        >
          <button className="btn-danger">Delete</button>
        </AuthzUI>
      </td>
    </tr>
  );
}

Management Mode (Config Mode)

Toggle "Config Mode" to manage permissions visually. In this mode, protected components are highlighted, and their security policies can be updated in real-time.

const { configMode, toggleConfigMode } = useAuthz();

return (
  <button onClick={toggleConfigMode} className="premium-btn">
    {configMode ? '🔒 End Lockdown' : '🛠 Architect Mode'}
  </button>
);

Visual Feedback

  • Emerald Green Highlights: Component is authorized for the current user.
  • Amber Orange Highlights: Component is restricted; permissions must be granted.

Theming

The library is designed to feel premium out-of-the-box but adapts to your design tokens:

:root {
  --color-primary: #2563eb; /* Blue-600 */
  --color-surface: #ffffff;
  --color-text: #111827;
}

Advanced PBAC Integration

For complex rules (e.g., "only authors can edit"), pass additional context directly to the wrapper:

<AuthzUI 
  id="edit-post" 
  context={{ postStatus: 'draft', timeElapsed: 24 }}
>
  <EditButton />
</AuthzUI>

tarxemo-react-authz