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

react-access-route

v1.0.5

Published

A React library for managing access control in routes

Readme

react-access-route

A React hook for managing access control in your application. This package provides a simple way to manage user permissions and access control in React applications using a context provider.

Installation

To install the package, run the following command:

npm install react-access-route

or

yarn add react-access-route

Features

  • Role-based access control: Define roles and permissions for users.
  • Context provider: Wrap your application with the AccessProvider to provide access control context.
  • Custom hooks: Use the useAccess hook to check permissions in your components.
  • Guard components: Use the Guard component to conditionally render content based on user permissions.
  • TypeScript support: Fully typed with TypeScript for better development experience.

Usage

  1. Wrap your application with the AccessProvider:
import React from "react";
import { AccessProvider } from "react-access-route";

const App = () => {
  return (
    <AccessProvider roles={["admin"]} permissions={[["edit", "article"]]}>
      <YourComponent />
    </AccessProvider>
  );
};
  1. Use the useAccess hook in your components:
import React from "react";
import { useAccess } from "react-access-route";

const YourComponent = () => {
  const { hasAccess } = useAccess();

  return (
    <div>
      {hasAccess("edit", "article") ? (
        <button>Edit Article</button>
      ) : (
        <p>You do not have permission to edit this article.</p>
      )}
    </div>
  );
};

export default YourComponent;

API

AccessProvider

  • props:
    • roles: An array of roles assigned to the user.
    • permissions: An array of permissions assigned to the user, where each permission is an array containing the action and the resource (e.g., ['edit', 'article']).

useAccess

  • returns: An object with the following properties:
    • hasAccess(action: string, resource: string): A function that checks if the user has the specified action on the resource. Returns true if access is granted, otherwise false.

Example

import React from "react";
import { AccessProvider, useAccess } from "react-access-route";
const App = () => {
  return (
    <AccessProvider
      roles={["admin"]}
      permissions={[
        ["edit", "article"],
        ["view", "dashboard"],
      ]}
    >
      <Dashboard />
    </AccessProvider>
  );
};
const Dashboard = () => {
  const { hasAccess } = useAccess();

  return (
    <div>
      {hasAccess("view", "dashboard") ? (
        <h1>Dashboard</h1>
      ) : (
        <p>You do not have permission to view this dashboard.</p>
      )}
      {hasAccess("edit", "article") && <button>Edit Article</button>}
    </div>
  );
};

export default App;

Testing

To run tests, use the following command:

npm test

Development

To build the project, run:

npm run build

This will compile the TypeScript files and create a dist directory with the built files.

Contributing

Contributions are welcome! Please feel free to submit a pull request or open an issue if you find a bug or have a feature request.

Changelog

  • v1.0.0: Initial release with basic access control functionality.

Authors

Acknowledgements

  • Thanks to the React community for their support and contributions.

Troubleshooting

If you encounter any issues, please check the following:

  • Ensure that you have the correct version of React installed.
  • Make sure to wrap your application with the AccessProvider before using the useAccess hook.
  • If you have any questions or need help, feel free to open an issue on GitHub.