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

next-analytics-installer

v0.3.1

Published

Scaffold consent-aware Microsoft Clarity and/or Google Analytics for Next.js

Readme

next-analytics-installer

Scaffolds consent-aware Microsoft Clarity and/or Google Analytics for a Next.js App Router project.

The implementation now lives under engine/. The published CLI still works from the package root as next-analytics-installer.

What it does

  • interactively lets you install Microsoft Clarity, Google Analytics, or both
  • adds components/analytics files (or src/components/analytics)
  • creates or patches proxy.ts with analytics region cookie logic
  • patches src/app/layout.tsx (or app/layout.tsx) to mount analytics providers/components
  • detects npm, pnpm, yarn, or bun from packageManager and lockfiles
  • adds only the dependencies required for the selected providers

Usage

After publishing, run it with npx:

npx next-analytics-installer init

The default flow is interactive in a terminal. In non-interactive environments, it defaults to both providers and does not run dependency installation.

If you are working in the repository itself, the CLI source and templates are under engine/.

Examples:

npx next-analytics-installer init --project ./frontend --force
npx next-analytics-installer init --analytics ga --project ./frontend
npx next-analytics-installer init --analytics clarity --package-manager pnpm --install
  • --project: target Next.js project directory
  • --analytics: clarity, ga, or both
  • --package-manager: override detected npm, pnpm, yarn, or bun
  • --install: run <package-manager> install after editing package.json
  • --no-install: never run dependency installation
  • --force: overwrite existing analytics folder files
  • --no-layout: skip patching app/layout.tsx
  • --no-proxy: skip creating or patching proxy.ts
  • --yes: skip prompts and use defaults

Environment variables

Set these in your app:

NEXT_PUBLIC_CLARITY_PROJECT_ID=your_clarity_id
NEXT_PUBLIC_GOOGLE_TAG=G-XXXXXXXXXX

The interactive flow can add the selected IDs to .env.local for you. Leave a value blank to skip it.

Optional toggles:

NEXT_PUBLIC_USE_GA=true
NEXT_PUBLIC_USE_ANALYTICS=true
NEXT_PUBLIC_ANALYTICS_REGION_ENDPOINT=/api/region
NEXT_PUBLIC_ANALYTICS_ALL_COUNTRIES=true

Add more regions to show consent

if you want to show the consent screens for other regions than these ones :

Austria, Belgium, Bulgaria, Switzerland, Cyprus, Czechia, Germany, Denmark, Estonia, Spain, Finland, France, United Kingdom, Greece, Croatia, Hungary, Ireland, Iceland, Italy, Liechtenstein, Lithuania, Luxembourg, Latvia, Malta, Netherlands, Norway, Poland, Portugal, Romania, Sweden, Slovenia, Slovakia.

You can follow the guide at :