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 ๐Ÿ™

ยฉ 2025 โ€“ย Pkg Stats / Ryan Hefner

react-cookie-manager

v4.0.3

Published

๐Ÿช The ultimate React cookie consent solution. Automatically block trackers, manage consent preferences, and protect user privacy with an elegant UI. Perfect for modern web applications.

Downloads

9,905

Readme

๐Ÿช React Cookie Manager

Privacy-first, flexible cookie consent for React. Automatically block trackers, manage granular consent, and provide a beautiful UX in a few lines of code.

npm version npm downloads license: MIT types: TypeScript bundle size

React Cookie Manager Hero

React Cookie Manager

Feature highlights

  • Geolocation-based auto-display (shows banner only in regulated regions)
  • Automatic blocking of common trackers and third-party embeds
  • Granular categories (Analytics, Social, Advertising)
  • Beautiful, responsive UI (banner, popup, modal) with theming
  • Floating settings button and full preferences UI

Quick Start

Get up and running quickly with React Cookie Manager:

npm install react-cookie-manager
# or
yarn add react-cookie-manager
import { CookieManager } from "react-cookie-manager";

createRoot(document.getElementById("root")).render(
  <StrictMode>
    <CookieManager>
      <App />
    </CookieManager>
  </StrictMode>
);

The CookieManager component needs to wrap your entire application to properly manage cookie consent across all components and pages. Styles are automatically injected; no manual CSS import is required.

Contents

Features

  • ๐ŸŒ Multiple display types (banner, popup, modal)
  • ๐Ÿ›ก๏ธ Automatic tracking prevention (Google Analytics, etc.)
  • ๐ŸŽฌ Smart iframe blocking for embedded content (YouTube, Vimeo, etc.)
  • ๐ŸŽฏ Granular cookie category controls (Analytics, Social, Advertising)
  • ๐ŸŽจ Light and dark theme support
  • ๐Ÿ“ฑ Responsive design
  • ๐Ÿ”ง Highly customizable UI
  • ๐Ÿ’พ Persistent consent storage
  • ๐Ÿ”’ Privacy-first approach
  • ๐Ÿ‡ช๐Ÿ‡บ GDPR compliance with CookieKit.io integration
  • ๐Ÿช Floating cookie button for easy access

CookieKit Integration

Take your GDPR compliance to the next level with CookieKit.io integration!

Features

  • ๐Ÿ“Š Real-time consent analytics dashboard
  • ๐Ÿ”„ Automatic consent proof storage
  • ๐Ÿ“ˆ Advanced user segmentation
  • ๐Ÿ†“ Completely free to use!

Usage with CookieKit

import { CookieManager } from "react-cookie-manager";

function App() {
  return (
    <CookieManager
      cookieKitId="" // Get this from cookiekit.io
      translations={{
        title: "Cookie Preferences",
        message: "We use cookies to improve your experience.",
      }}
    >
      <YourApp />
    </CookieManager>
  );
}

When cookieKitId is provided, React Cookie Manager will automatically:

  • Generate and track unique session IDs
  • Send consent events to CookieKit.io
  • Store consent proofs for GDPR compliance
  • Provide analytics data in your CookieKit dashboard

Visit cookiekit.io to get started for free!

๐ŸŽฎ Try it out!

๐Ÿ”— Live Demo

See React Cookie Manager in action and explore all its features in our interactive demo.

Automatically Disable Tracking

Unlike other cookie consent managers and React components, this component automatically disables tracking for Google Analytics, Facebook Pixel, and other tracking services. This is done by blocking the tracking scripts from loading. Therefore, you don't need to manually disable tracking, saving you hours of work.

Embedded Content Blocking

React Cookie Manager automatically blocks embedded iframes that would otherwise load cookies without consent, such as:

  • YouTube videos
  • Vimeo videos
  • Google Maps
  • Social media embeds (Twitter, Instagram, etc.)
  • Third-party widgets and tools

When a user hasn't consented to the required cookies, these embeds are replaced with user-friendly placeholders that:

  • Explain why the content is blocked
  • Provide a button to manage cookie settings
  • Inform users to refresh the page after accepting cookies
  • Maintain the same dimensions as the original content

This ensures your site remains GDPR-compliant while providing a seamless user experience.

React Cookie Manager Styles

Geolocation

React Cookie Manager can automatically decide whether to show the cookie banner based on the userโ€™s region.

  • Logic: only shows for regulated jurisdictions (GDPR: EU/EEA/UK, CH, BR, CA/PIPEDA, AU, JP/APPI, KR/PIPA, certain US regions like US-CA).
  • Opt-out: pass disableGeolocation to skip the check and always show the banner when no consent is stored.

Usage

import { CookieManager } from "react-cookie-manager";

// Geolocation enabled by default
<CookieManager>{children}</CookieManager>

// Opt-out: disable geolocation gating
<CookieManager disableGeolocation>{children}</CookieManager>

Basic Usage

import { CookieManager } from "react-cookie-manager";

function App() {
  return (
    <CookieManager
      translations={{
        title: "Cookie Preferences",
        message: "We use cookies to improve your experience.",
      }}
      onManage={(preferences) =>
        console.log("Cookie preferences:", preferences)
      }
    >
      <YourApp />
    </CookieManager>
  );
}

Next.js Usage

With Next.js (App Router), render CookieManager in a client Providers component at the root. No dynamic import is required.

// app/components/Providers.tsx
"use client";

import { CookieManager } from "react-cookie-manager";

export function Providers({ children }: { children: React.ReactNode }) {
  return (
    <CookieManager
      showManageButton
      enableFloatingButton
      displayType="popup"
      theme="light"
    >
      {children}
    </CookieManager>
  );
}
// app/layout.tsx
import type { Metadata } from "next";
import { Providers } from "@/components/Providers";

export const metadata: Metadata = { title: "App" };

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en">
      <body>
        <Providers>{children}</Providers>
      </body>
    </html>
  );
}

Use the hook in any client component:

// app/page.tsx (client component)
"use client";

import { useCookieConsent } from "react-cookie-manager";

export default function Home() {
  const { showConsentBanner, detailedConsent, openPreferencesModal } =
    useCookieConsent();

  return (
    <div>
      <button onClick={showConsentBanner}>Manage Cookie Settings</button>
      <button onClick={openPreferencesModal}>Open Preferences</button>
      {detailedConsent && (
        <div>
          Analytics: {detailedConsent.Analytics.consented ? "Enabled" : "Disabled"}
          Social: {detailedConsent.Social.consented ? "Enabled" : "Disabled"}
          Advertising: {detailedConsent.Advertising.consented ? "Enabled" : "Disabled"}
        </div>
      )}
    </div>
  );
}

Full Usage

import { CookieManager } from "react-cookie-manager";

function App() {
  return (
    <CookieManager
      translations={{
        title: "Would You Like A Cookie? ๐Ÿช",
        message:
          "We value your privacy. Choose which cookies you want to allow. Essential cookies are always enabled as they are necessary for the website to function properly.",
        buttonText: "Accept All",
        declineButtonText: "Decline All",
        manageButtonText: "Manage Cookies",
        privacyPolicyText: "Privacy Policy",
      }}
      showManageButton={true}
      privacyPolicyUrl="https://example.com/privacy"
      theme="light"
      displayType="popup"
      cookieKitId="" // Optional: Enable CookieKit.io integration
      onManage={(preferences) => {
        if (preferences) {
          console.log("Cookie preferences updated:", preferences);
        }
      }}
      onAccept={() => {
        console.log("User accepted all cookies");
        // Analytics tracking can be initialized here
      }}
      onDecline={() => {
        console.log("User declined all cookies");
        // Handle declined state if needed
      }}
    >
      <AppContent />
    </CookieManager>
  );
}

Advanced Usage with Hook

import { CookieManager, useCookieConsent } from "react-cookie-manager";

function CookieSettings() {
  const { showConsentBanner, detailedConsent } = useCookieConsent();

  return (
    <div>
      <button onClick={showConsentBanner}>Manage Cookie Settings</button>
      {detailedConsent && (
        <div>
          Analytics:{" "}
          {detailedConsent.Analytics.consented ? "Enabled" : "Disabled"}
          Social: {detailedConsent.Social.consented ? "Enabled" : "Disabled"}
          Advertising:{" "}
          {detailedConsent.Advertising.consented ? "Enabled" : "Disabled"}
        </div>
      )}
    </div>
  );
}

Floating Cookie Button

The floating cookie button provides a persistent, accessible way for users to manage their cookie preferences after they've made their initial choice. It appears as a small, animated cookie icon in the bottom-left corner of the screen.

Enabling the Floating Button

<CookieManager
  enableFloatingButton={true}
  theme="light" // or "dark"
  // ... other props
>
  <YourApp />
</CookieManager>

Features

  • ๐ŸŽฏ Automatically appears after initial consent
  • ๐ŸŽจ Matches your theme (light/dark mode)
  • ๐Ÿ”„ Smooth animations and hover effects
  • โŒ Dismissible with a close button
  • ๐Ÿ“ฑ Responsive and mobile-friendly
  • ๐ŸŽ›๏ธ Easy access to cookie preferences

Behavior

  1. The button appears after users make their initial cookie choice
  2. Hovering reveals a close button to dismiss the floating button
  3. Clicking opens the cookie preferences modal
  4. The button remains hidden until page refresh after being closed
  5. Maintains position during scroll

Customization

The floating button automatically adapts to your chosen theme:

// Light theme (default)
<CookieManager
  enableFloatingButton={true}
  theme="light"
>
  <YourApp />
</CookieManager>

// Dark theme
<CookieManager
  enableFloatingButton={true}
  theme="dark"
>
  <YourApp />
</CookieManager>

The button inherits your color scheme:

  • Light theme: White background with gray text
  • Dark theme: Black background with light gray text

Accessibility

The floating button is fully accessible:

  • Proper ARIA labels
  • Keyboard navigation support
  • Focus management
  • High contrast ratios
  • Screen reader friendly

Props

These are the props for the CookieManager component (the main component you should use).

| Prop | Type | Default | Description | | -------------------------- | ---------------------------------------- | ---------------- | ----------------------------------------- | | children | React.ReactNode | - | Your app components | | translations | TranslationObject | TranslationFunction | - | Translation object or i18n TFunction | | translationI18NextPrefix | string | - | i18next key prefix, e.g. "cookies." | | showManageButton | boolean | true | Whether to show the manage cookies button | | enableFloatingButton | boolean | false | Enable floating cookie button | | privacyPolicyUrl | string | - | URL for the privacy policy | | cookieKey | string | 'cookie-consent' | Name of the cookie to store consent | | expirationDays | number | 365 | Days until consent expires | | displayType | 'banner' | 'popup' | 'modal' | 'popup' | How the consent UI is displayed | | theme | 'light' | 'dark' | 'light' | Color theme | | disableAutomaticBlocking | boolean | false | Disable automatic tracking prevention | | blockedDomains | string[] | [] | Additional domains/hosts to block | | cookieKitId | string | - | Your CookieKit.io integration ID | | userId | string | - | Optional user id for CookieKit analytics | | onManage | (preferences?: CookieCategories) => void | - | Callback when preferences are updated | | onAccept | () => void | - | Callback when all cookies are accepted | | onDecline | () => void | - | Callback when all cookies are declined | | classNames | CookieConsenterClassNames | - | Custom class names for styling | | cookieCategories | CookieCategories | { Analytics: true, Social: true, Advertising: true } | Which categories to show in Manage UI | | initialPreferences | CookieCategories | { Analytics: false, Social: false, Advertising: false } | Initial values for categories |

CSS Customization

React Cookie Manager provides extensive styling customization through the classNames prop. You can override the default styling for each element of the cookie consent UI.

Available classNames

<CookieManager
  classNames={{
    // Main action buttons
    acceptButton:
      "bg-green-500 hover:bg-green-600 text-white font-bold py-2 px-4 rounded-lg",
    declineButton:
      "bg-red-500 hover:bg-red-600 text-white font-bold py-2 px-4 rounded-lg",
    manageButton:
      "border-2 border-blue-500 text-blue-500 font-bold py-2 px-4 rounded-lg hover:bg-blue-50",

    // Banner style (bottom of screen)
    bannerContainer:
      "bg-white/90 border-2 border-blue-200 shadow-xl rounded-xl",
    bannerContent: "p-6 space-y-4",
    bannerTitle: "text-lg font-bold text-blue-800",
    bannerMessage: "text-sm text-gray-700",

    // Popup style (bottom left corner)
    popupContainer: "bg-white/90 border-2 border-blue-200 shadow-xl rounded-xl",
    popupContent: "p-6 space-y-4",
    popupTitle: "text-lg font-bold text-blue-800",
    popupMessage: "text-sm text-gray-700",

    // Modal style (center of screen)
    modalContainer: "bg-black/50 backdrop-blur-sm",
    modalContent: "bg-white p-8 rounded-xl max-w-lg mx-auto",
    modalTitle: "text-xl font-bold text-gray-900",
    modalMessage: "text-gray-600 my-4",

    // Floating cookie button (appears after consent is given)
    floatingButton: "bg-blue-500 text-white shadow-lg hover:bg-blue-600",
    floatingButtonCloseButton: "bg-red-500 text-white",

    // Manage Cookie UI elements
    manageCookieContainer: "space-y-6",
    manageCookieTitle: "text-xl font-bold text-blue-800",
    manageCookieMessage: "text-gray-700",
    manageCookieCategory: "border-b border-gray-200 pb-4",
    manageCookieCategoryTitle: "font-bold text-gray-800",
    manageCookieCategorySubtitle: "text-gray-600",
    manageCookieStatusText: "text-xs text-gray-500 italic",
    manageCookieToggle: "bg-gray-300",
    manageCookieToggleChecked: "bg-green-500",
    manageCancelButton:
      "bg-gray-300 hover:bg-gray-400 text-gray-800 font-bold py-2 px-4 rounded",
    manageSaveButton:
      "bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded",

    // Other elements
    privacyPolicyLink: "text-blue-600 underline hover:text-blue-800",
    poweredByLink: "text-gray-400 hover:text-gray-600",
  }}
>
  {children}
</CookieManager>

CSS Framework Compatibility

The classNames prop is compatible with any CSS framework. Here are some examples:

Tailwind CSS

<CookieManager
  classNames={{
    acceptButton:
      "bg-green-500 hover:bg-green-600 text-white font-bold py-2 px-4 rounded",
    declineButton:
      "bg-red-500 hover:bg-red-600 text-white font-bold py-2 px-4 rounded",
    bannerContainer: "bg-white shadow-lg rounded-lg border border-gray-200",
  }}
>
  {children}
</CookieManager>

Bootstrap

<CookieManager
  classNames={{
    acceptButton: "btn btn-success",
    declineButton: "btn btn-danger",
    manageButton: "btn btn-outline-primary",
    bannerContainer: "card",
    bannerContent: "card-body",
    bannerTitle: "card-title",
    bannerMessage: "card-text",
  }}
>
  {children}
</CookieManager>

Element Groups

The classNames are organized by component type:

Button Elements

  • acceptButton: Style for the Accept/Allow cookies button
  • declineButton: Style for the Decline/Reject cookies button
  • manageButton: Style for the Manage Cookies button
  • manageCancelButton: Style for the Cancel button in the manage preferences view
  • manageSaveButton: Style for the Save Preferences button

Container Elements

  • bannerContainer: Main container for the banner-style consent UI
  • popupContainer: Main container for the popup-style consent UI
  • modalContainer: Main container for the modal-style consent UI
  • manageCookieContainer: Container for the manage preferences UI

Content Elements

  • bannerContent, popupContent, modalContent: Content containers for each display type
  • bannerTitle, popupTitle, modalTitle: Title elements for each display type
  • bannerMessage, popupMessage, modalMessage: Message elements for each display type

Manage Cookie UI Elements

  • manageCookieTitle: Title for the manage cookie preferences UI
  • manageCookieMessage: Description text in the manage preferences UI
  • manageCookieCategory: Container for each cookie category
  • manageCookieCategoryTitle: Title for each cookie category
  • manageCookieCategorySubtitle: Description for each cookie category
  • manageCookieStatusText: Status text showing consent status and date
  • manageCookieToggle: Toggle switch for cookie categories
  • manageCookieToggleChecked: Style applied to the toggle when checked

Other Elements

  • privacyPolicyLink: Style for the privacy policy link
  • floatingButton: Style for the floating cookie button
  • floatingButtonCloseButton: Style for the close button on the floating cookie button
  • poweredByLink: Style for the "Powered by CookieKit" link

Cookie Categories

The component supports managing consent for three predefined cookie categories:

interface CookieCategories {
  Analytics: boolean;
  Social: boolean;
  Advertising: boolean;
}

You can control which categories appear in the Manage Preferences UI by using the cookieCategories prop. This allows you to selectively hide or show specific categories based on your needs:

<CookieManager
  cookieCategories={{
    Analytics: true, // Show Analytics category
    Social: false, // Hide Social category
    Advertising: true, // Show Advertising category
  }}
>
  {children}
</CookieManager>

By default, all categories are shown. When a category is hidden, its initial value is still respected as defined in the initialPreferences prop. The default preferences are:

{
  Analytics: false,
  Social: false,
  Advertising: false,
}

This means even hidden categories will retain their configured initial values and can still be programmatically accessed.

Hook API

The useCookieConsent hook provides the following:

interface CookieConsentHook {
  hasConsent: boolean | null;
  isDeclined: boolean;
  detailedConsent: DetailedCookieConsent | null;
  showConsentBanner: () => void;
  openPreferencesModal: () => void;
  acceptCookies: () => void;
  declineCookies: () => void;
  updateDetailedConsent: (preferences: CookieCategories) => void;
}

Event Callbacks

The CookieManager component provides callback props that allow you to respond to user interactions with the consent UI:

| Callback | Triggered when | Parameters | | ----------- | ------------------------------------ | -------------------------------- | | onAccept | User accepts all cookies | None | | onDecline | User declines all cookies | None | | onManage | User saves custom cookie preferences | preferences?: CookieCategories |

Usage Example

<CookieManager
  onAccept={() => {
    console.log("All cookies accepted");
    // Initialize analytics tools
    window.gtag?.("consent", "update", { analytics_storage: "granted" });
  }}
  onDecline={() => {
    console.log("All cookies declined");
    // Ensure tracking is disabled
    window.gtag?.("consent", "update", { analytics_storage: "denied" });
  }}
  onManage={(preferences) => {
    console.log("Custom preferences saved:", preferences);
    // Handle granular consent
    if (preferences?.Analytics) {
      // Enable analytics
    }
    if (preferences?.Advertising) {
      // Enable ad personalization
    }
  }}
>
  {children}
</CookieManager>

Common Use Cases

  • Analytics Initialization: Only initialize tracking tools after receiving explicit consent
  • Ad Personalization: Enable or disable personalized advertising based on user preferences
  • Social Media Integration: Load social widgets only when Social cookies are accepted
  • Consent Logging: Record user consent choices for compliance purposes
  • UI Updates: Update the UI based on user consent status (e.g., showing alternative content)

i18next support

import { default as i18next } from "i18next";

function App() {
  return (
    <CookieManager
      translations={i18next.t}
      translationI18NextPrefix="cookies."
      ...
      />
  )
}
// en.json
{
  "cookies": {
    "title": "Would You Like A Cookie? ๐Ÿช",
    "message": "We value your privacy. Choose which cookies you want to allow. Essential cookies are always enabled as they are necessary for the website to function properly.",
    "buttonText": "Accept All",
    "declineButtonText": "Decline All",
    "manageButtonText": "Manage Cookies",
    "privacyPolicyText": "Privacy Policy"
  }
  //...
}

Translation Options

All available translation keys and their default values:

{
  // Main consent banner/popup/modal
  title: "",  // Optional title
  message: "This website uses cookies to enhance your experience.",
  buttonText: "Accept",
  declineButtonText: "Decline",
  manageButtonText: "Manage Cookies",
  privacyPolicyText: "Privacy Policy",

  // Manage consent modal
  manageTitle: "Cookie Preferences",
  manageMessage: "Manage your cookie preferences below. Essential cookies are always enabled as they are necessary for the website to function properly.",

  // Essential cookies section
  manageEssentialTitle: "Essential",
  manageEssentialSubtitle: "Required for the website to function properly",
  manageEssentialStatus: "Status: Always enabled",
  manageEssentialStatusButtonText: "Always On",

  // Analytics cookies section
  manageAnalyticsTitle: "Analytics",
  manageAnalyticsSubtitle: "Help us understand how visitors interact with our website",

  // Social cookies section
  manageSocialTitle: "Social",
  manageSocialSubtitle: "Enable social media features and sharing",

  // Advertising cookies section
  manageAdvertTitle: "Advertising",
  manageAdvertSubtitle: "Personalize advertisements and measure their performance",

  // Status messages
  manageCookiesStatus: "Status: {{status}} on {{date}}", // Supports variables
  manageCookiesStatusConsented: "Consented",
  manageCookiesStatusDeclined: "Declined",

  // Buttons in manage modal
  manageCancelButtonText: "Cancel",
  manageSaveButtonText: "Save Preferences"
}

You can override any of these translations by passing them in the translations prop:

<CookieManager
  translations={{
    title: "Cookie Settings ๐Ÿช",
    message: "We use cookies to improve your experience.",
    buttonText: "Allow All",
    manageButtonText: "Customize",
    // ... override any other translations
  }}
>
  <App />
</CookieManager>

i18next Integration

When using i18next, make sure your translation files include all the keys under your chosen prefix:

{
  "cookies": {
    "title": "Cookie Settings ๐Ÿช",
    "message": "We use cookies to improve your experience.",
    "buttonText": "Allow All",
    "declineButtonText": "Decline All",
    "manageButtonText": "Customize",
    "privacyPolicyText": "Privacy Policy",
    "manageTitle": "Cookie Preferences",
    "manageMessage": "Customize your cookie preferences below...",
    "manageEssentialTitle": "Essential Cookies"
    // ... include all other translation keys
  }
}

Then use it with the i18next translation function:

import { useTranslation } from "react-i18next";

function App() {
  const { t } = useTranslation();

  return (
    <CookieManager translations={t} translationI18NextPrefix="cookies.">
      <YourApp />
    </CookieManager>
  );
}

Local Development

Run the example apps locally to test changes:

# Clone and install deps at repo root
pnpm install

# Vite playground
cd playground
pnpm install
pnpm dev

# Next.js playground (App Router)
cd ../playground-next
pnpm install
pnpm dev

Both playgrounds consume the local package via a file dependency so your changes are reflected immediately.

Contributing

Contributions are welcome! Hereโ€™s how to get started:

  1. Fork the repo and create a feature branch
  2. Make your changes with tests where applicable
  3. Run the test suite: pnpm test
  4. Open a PR and describe your changes
  • Issues: GitHub Issues
  • Discussions/ideas: open an issue to start a conversation

License

MIT ยฉ Hypership