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

ad-blockguard

v0.2.0

Published

Universal AdBlock & DNS-Blocker detection for web, WP, React, Vue & Nuxt

Downloads

835

Readme

🛡️ (AD-)BlockGuard

AdBlock & DNS-Blocker detection for websites/web apps.

Most users dont hide ads anymore, but block ad domains at network or DNS level (DNS, Pi-hole, VPNs). This finds DNS/network blocking and visual blocking. Protect ad revenue and analytics.

npm jsdelivr

How it works

  1. Network Test: Sends requests to common ad-scripts (not loading them). If enough fail, an ad blocker is detected. This catches DNS blockers, Pi-hole, VPNs, AD-Blockers.
  2. Banner Scan: Injects hidden elements with ad-like names and watches them with MutationObserver.
  3. anti-tamper: a _native funciton snapshots on load, so it can't be tampered with. changing settings or manipulating responses will be ignored.

Please fully test your implementation using debug: true

I recommend using AD-domains which are used by your own ad/analytics functions, by specifying them in the configuration. (testUrls as string[]) The script is friendly to crawling bots.

Installation

npm install ad-blockguard

CDN

<script src="https://cdn.jsdelivr.net/npm/ad-blockguard/dist/blockguard.min.js" crossorigin="anonymous"></script>

With integrity:

<script
  src="https://cdn.jsdelivr.net/npm/ad-blockguard/dist/blockguard.min.js"
  integrity="sha256-replace.with.hash"
  crossorigin="anonymous">
</script>

samples

Vanillajs / CDN

<script src="https://cdn.jsdelivr.net/npm/ad-blockguard/dist/blockguard.min.js"></script>
<script>
  // recommended is to check load 
  if (typeof BlockGuard === 'undefined') {...}
  var BGClass = window.BlockGuard.default || window.BlockGuard;

  new BGClass({
    debug: true,
    // urls needed on website, which are in blocklists (check if they are (easylist, adguard list, ublock filters))
    testUrls: ["https://adsense232.com/adsense-script.js", "https://cdn87.analytics.com/script.js", "https://matomoserver.host/watch"],
    bannerScan: true,
    customBaitClasses: ["banner names", "similar to", "my served-ones", "like pub-738360 or adbanner"]
    onDetected: function () {
      //you can run an extra function. or bind this to your analytics and send a custom event
      document.getElementById('adblock-warning').style.display = 'block';
    },
    onNotDetected: function () {
      alert("Thanks for no adBlocker use. 🙂")
    }
  });
</script>

<div id="adblock-warning" style="display:none">
  Please disable your ad blocker.
</div>

React / Next.js / Vite + React

Install and create a client component:

// components/AdBlockGuard.jsx
'use client';

import { useBlockGuard } from 'ad-blockguard/react';

export default function AdBlockGuard() {
  const { detected, checking } = useBlockGuard({
    networkThreshold: 2,
    gtag: true,
  });

  if (checking) return null;
  if (!detected) return null;

  return (
    <div className="adblock-overlay">
      <p>disable ad blocker</p>
      <button onClick={() => window.location.reload()}>disabled it</button>
    </div>
  );
}

Add it to your main layout to run on all pages:

// app/layout.jsx
import AdBlockGuard from '@/components/AdBlockGuard';

export default function RootLayout({ children }) {
  return (
    <html>
      <body>
        <AdBlockGuard />
        {children}
      </body>
    </html>
  );
}

Vue 3 / Nuxt 3

<!-- components/AdBlockGuard.vue -->
<script setup>
import { useBlockGuard } from 'ad-blockguard/vue';

const { detected, checking } = useBlockGuard({
  networkThreshold: 2,
  gtag: true,
});
</script>

<template>
  <Teleport to="body">
    <div v-if="!checking && detected" class="adoverlay">
      <p>Please disable your ad blocker.</p>
      <button @click="$router.go(0)">I've disabled it</button>
    </div>
  </Teleport>
</template>

Astro

make component to use later in root layout file:

***
// src/components/AdBlockGuard.astro
***
<div id="warning" style="display:none">
  Please disable your ad blocker.
</div>

<script>
  import BlockGuard from 'ad-blockguard';

  new BlockGuard({
    onDetected: () => {
      document.getElementById('bg-warning').style.display = 'block';
    }
  });
</script>

Then import the component into your main layout and use it:

***
// src/layouts/Layout.astro
***
---
import AdBlockGuard from '../components/AdBlockGuard.astro';
---
<!doctype html>
<html lang="en">
	<head>
  // here were some meta tags
		<title>Astro</title>
	</head>
	<body>
	<AdBlockGuard />
		<slot />
	</body>
</html>

WordPress

A WordPress plugin is available as .zip file, see /integrations/wordpress. (you'll also find a tutorial on how to use it there)


Configuration

All options are optional, but configuration is recommended. Pass them to new BlockGuard({ ... }) or useBlockGuard({ ... }). (new ... is for pure JS/Astro. the second one is for hooks(react/nuxt/vue/vite/next.js))

Detection

| Option | Type | Default | Description | | :--- | :---: | :---: | :--- | | checkOnLoad | boolean | true | Auto-run detection when the page loads. autom. is false in React/Vue hooks. | | networkTest | boolean | true | Detect DNS/network-level blockers via HEAD requests. | | bannerScan | boolean | false | Detect visual ad blockers (e.g. uBlock Origin) by injecting hidden bait elements. | | debug | boolean | false | logs to the browser console. For development. |

Network Test (on by default; do networkTest: false to disable)

| Option | Type | Default | Description | | :--- | :---: | :---: | :--- | | testUrls | string[] | (built-in list) | Replaces the default URL list. Use your own ad/analytics URLs for best accuracy. | | extraTestUrls | string[] | [] | Adds URLs to the default list without replacing it. | | networkTestCount | number | 3 | How many URLs to randomly pick and test per check. | | networkThreshold | number | 2 | Minimum number of blocked URLs required to trigger detection. | | networkTimeout | number | 5000 | Milliseconds before a request is considered blocked (timeout). |

Banner Scan (only active if bannerScan: true)

| Option | Type | Default | Description | | :--- | :---: | :---: | :--- | | customBaitClasses | string[] | [] | Additional CSS classes for bait ads, e.g. form ads you serve. | | baitCheckInterval | number | 100 | Interval in ms between each bait visibility check. | | baitCheckAttempts | number | 5 | Max checks before the banner scan stops (def.interval(100ms) * def.attempts(5)= 500ms). |

Analytics

| Option | Type | Default | Description | | :--- | :---: | :---: | :--- | | gtag | boolean | false | If true and window.gtag is present, fires a GA4 event automatically on detection. | | gtagEventName | string | "adblock_detected" | The GA4 event name (for dashboard). | | gtagParams | object | {} | Extra parameters sent with the event, like { page_type: 'article' }. | | analyticsCallback | function | null | Custom callback for any analytics provider (Plausible, Matomo, etc.). Receives (detected, reason, details). |

Callbacks

| Option | Type | Description | | :--- | :---: | :--- | | onDetected | function | called when a blocker is detected (no parameters) | | onNotDetected | function | called when all tests pass (no blocker;no parameters) | | onResult | function | always called after detection. Receives (detected: boolean, reason: string, details: object). |


API

const guard = new BlockGuard(options);

guard.check();          // Manually trigger a detection run. Returns Promise<boolean | null>
guard.reset();          // Clear results and allow re-running check().
guard.destroy();        // Remove all DOM elements and listeners.

guard.onDetected(fn);   // Add a detected callback. Returns `this` (chainable).
guard.onNotDetected(fn);// Add a not-detected callback. Returns `this` (chainable).

guard.getResult();      // Returns: true / false / null (null = not checked yet)
guard.getReason();      // Returns a detection reason string, like 'network_blocked'
guard.getDetails();     // Returns the full result object including per-URL network results

Detection reasons

| Reason | Trigger | | :--- | :--- | | network_blocked | ≥ threshold URLs failed the network test | | bait_blocked | an ad was hidden by CSS | | bait_removed | an ad was removed | | bait_modified | an ad's class/style was modified | | all_passed | no blocking detec. |


Google Analytics (gtag)

If GA4 is initialized on your page (via Google Tag Manager or gtag.js snippet), setting gtag: true is enough, BlockGuard will call window.gtag('event', ...) automatically.

new BlockGuard({
  gtag: true,
  gtagEventName: 'adblock_detected', // default
  gtagParams: { page_type: 'premium_article' } // optional extra params
});

For other analytics providers (Plausible, Matomo, Fathom):

new BlockGuard({
  analyticsCallback: function(detected, reason) {
    if (detected) {
      plausible('Adblock Detected', { props: { reason: reason } });
    }
  }
});

(please check if this is correct for your provider, but i think all of them have similar approaches)


Integrations

mini projects and short guides are available in /integrations:


TypeScript

TypeScript support is added. No @types/ package needed.

import BlockGuard, { BlockGuardOptions } from 'ad-blockguard';

const options: BlockGuardOptions = {
  networkThreshold: 2,
  onDetected: () => console.log('Blocked!'),
};

const guard = new BlockGuard(options);

The idea of BlockGuard was partly inspired from FuckAdBlock by sitexw

Most of the script code was made using AI, I'm still learning. BUT, my 'good' JS knowledge confirmed it is stable for most usecases. (I published this, also so it can be imporved even more) ^^

Contributing

Pull requests are welcome! Please open an issue first to discuss what you want to change, thanks.


License

MIT © 2026 Ponk445