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

cookie-consent-mv

v0.0.7

Published

A lightweight JavaScript plugin to handle cookie consent.

Readme

cookie consent vue+vite

Cookie Consent for Vue JS (Version 3 Compatible)

Allows or deletes cookies. There are config files to change the design and add the relevant cookies. A lightweight JavaScript plugin to handle cookie consent.

Recommended IDE Setup

VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).

Customize configuration

See Vite Configuration Reference.

Project Setup

npm install

Compile and Hot-Reload for Development

npm run dev

Compile and Minify for Production

npm run build

NPM Settings

npm i cookie-consent-mv
import {App} from 'cookie-consent-mv'
<template>
  <App :datas = "datas" />
</template>

Required for datas config settings. It is also a props.

You can change the fields you see. is the config file An example setup for datas props;

datas: {
        cookie_project_name: 'cookie_consent',
        current_lang: 'tr',
        languages: {
            'tr': {
                consent_modal: {
                    title: 'We use cookies!',
                    description: 'Hello, this website tracks cookies to understand the cookies necessary to make it work properly and how you interact with it. The latter is determined only after approval.',
                    primary_btn: {
                        text: 'ACCEPT ALL'
                    },
                    secondary_btn: {
                        text: 'SETTINGS'
                    }
                },
                settings_modal: {
                    title: "Cookies",
                    description: "I use cookies to provide basic functionality of the website and improve your online experience. You can choose to join/exit at any time for each category. For more details regarding cookies and other sensitive data, please read the full privacy policy.",
                    save_settings_btn: 'Save Settings',
                    accept_all_btn: 'Accept All',
                    reject_all_btn: 'Reject All',
                    blocks: [
                        {
                            title: "Strictly necessary cookies",
                            description: "These cookies are necessary for my website to work properly. Without these cookies the website will not function properly.",
                            value: 'necessary',
                            enabled: true,
                            readonly: true,
                            cookies: [
                                {
                                    name: "cookie1",
                                    enabled: true,
                                    readonly: true,
                                },
                                {
                                    name: "cookie2",
                                    enabled: true,
                                    readonly: true,
                                }
                            ]
                        },
                        {
                            title: "Performance and Analytics cookies",
                            description: "These cookies allow the website to remember choices you have made in the past.",
                            value: 'performance',
                            enabled: false,
                            readonly: false,
                            cookies: [
                                {
                                    name: "cookie3",
                                    enabled: false,
                                    readonly: false,
                                },
                                {
                                    name: "cookie4",
                                    enabled: false,
                                    readonly: false,
                                }
                            ]
                        },
                        {
                            title: "Advertising and Targeting cookies",
                            description: `
                            These cookies collect information about how you use the website, which pages you visit and which links you click. All data is anonymous and cannot be used to identify you
                            `,
                            value: 'targeting',
                            enabled: false,
                            readonly: false,
                            cookies: [
                                {
                                    name: "cookie5",
                                    enabled: false,
                                    readonly: false
                                },
                                {
                                    name: "cookie6",
                                    enabled: false,
                                    readonly: false
                                }
                            ]
                        }
                    ]
                }
            }
        }
      }

CSS

@import url(../node_modules/cookie-consent-mv/dist/style.css);

Note : this is a required css. cannot be changed

Customize CSS

:root {
  --font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial;
  --modal-font-size : 16px;
  --consent-modal-bg : #fff;
  --settings-modal-bg : #fff;
  --consent-modal-font-size : 14px;
  --consent-modal-width : 400px;
  --text-title-description-color: #2d4156;
  --btn-bg-secondary: #a71d8e;
  --btn-bg-secondary-hover: #bb249f;
  --btn-text-secondary-color: #fff;
  --btn-bg-primary: #333232;
  --btn-bg-primary-hover: #333232;
  --btn-text-primary-color: #333232;
  --overlay-bg: rgba(4, 6, 8, 0.8);
  --cookie-category-block: #f0f4f7;
  --cookie-category-block-bg-hover: #e9eff4;
  --cookie-category-block-text : #2d4156;
  --switch-bg: #333232;
  --switch-bg-active: #a71d8e;
  --bg-disable: #d4dee2;
  --bg-close : #f0f4f7;
  --bg-close-hover : #ddd;
}

Note : You can make edits in this css

1 3 2