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

@polvere94/cookie-flow

v1.2.1

Published

Premium glassmorphic cookie consent manager for any website (Vanilla JS, Next.js, React).

Readme

🍪 CookieFlow

Premium, glassmorphic cookie consent manager for any website. Lightweight, zero-dependency, and highly customizable.

License Version

✨ Features

  • 🎨 Glassmorphic UI: Modern design with backdrop-blur and sleek animations.
  • 🚀 Zero Dependencies: Pure Vanilla JS and CSS.
  • 🛡️ Script Blocking: Automatically blocks scripts until consent is given.
  • 📱 Responsive: Works perfectly on mobile and desktop.
  • 🌍 i18n: Built-in English and Italian support with auto-detection.
  • 🔘 Floating Button: Re-open settings at any time with a customizable widget.
  • Next.js & React Ready: Easy integration via scripts.

🚀 Installation

1. Via NPM (Recommended for Next.js/Build tools)

npm install @polvere94/cookie-flow

2. Manual Installation

Download the dist/ files and include them in your project.


💻 Usage

Vanilla JS / Static HTML

Copy the dist files to your server and include them:

<head>
  <link rel="stylesheet" href="/path/to/cookie-flow.min.css">
</head>
<body>
  <!-- Configuration -->
  <script>
    window.cfConfig = {
      language: 'auto',
      primaryColor: '#6366f1',
      privacyUrl: '/privacy'
    };
  </script>
  
  <script src="/path/to/cookie-flow.min.js"></script>
</body>

Next.js (App Router)

  1. Copy cookie-flow.min.js and cookie-flow.min.css to your public/ folder.
  2. Update your layout.tsx:
import Script from 'next/script';

export default function RootLayout({ children }) {
  return (
    <html>
      <head>
        <link rel="stylesheet" href="/cookie-flow.min.css" />
        <Script src="/cookie-flow.min.js" strategy="beforeInteractive" />
        <Script
          id="cookie-flow-config"
          strategy="afterInteractive"
          dangerouslySetInnerHTML={{
            __html: `
              window.cfConfig = {
                language: 'it',
                primaryColor: '#6366f1',
                floatingButton: true,
                privacyUrl: '/privacy'
              };
            `,
          }}
        />
      </head>
      <body>{children}</body>
    </html>
  );
}

🛡️ Blocking Scripts

To prevent scripts from loading before consent, change type to text/plain and add data-cookiecategory:

<script 
  type="text/plain" 
  data-cookiecategory="analytics" 
  src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXX">
</script>

⚙️ Configuration Options

| Property | Type | Default | Description | | :--- | :--- | :--- | :--- | | language | string | 'auto' | 'en', 'it', or 'auto'. | | primaryColor | string | '#6366f1' | Main theme color. | | theme | string | 'light' | 'light' or 'dark'. | | privacyUrl | string | null | Link to your Privacy Policy. | | floatingButton | boolean | false | Show button to reopen settings. | | floatingButtonPosition| string | 'bottom-left' | 'bottom-left' or 'bottom-right'. |


🛠️ API

You can control the manager programmatically:

  • window.cookieFlowInstance.showModal(): Open the settings modal.
  • window.cookieFlowInstance.hideModal(): Close the settings modal.

📄 License

MIT License. Created by Francesco.