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

nuxt-scramble

v0.2.0

Published

Nuxt module that obfuscates emails, phone numbers and custom text in HTML to make scraping harder

Readme

nuxt-scramble

npm version npm downloads License Nuxt

A Nuxt module that obfuscates emails, phone numbers and custom text patterns in your HTML to help prevent scraping. Works by encoding sensitive data at build time with XOR encryption and decoding it client side.

[!NOTE] This wont stop scrapers with JS enabled, but it raises the bar significantly for simple HTML scrapers

Features

  • Automatic detection and obfuscation of emails and phone numbers in your HTML
  • Server side rendering with encoded fallbacks for better SEO
  • Client side decoding
  • Automatic link generation (mailto: and tel:)
  • Custom regex patterns for protecting other sensitive data
  • <ScrambleText> component for control
  • New encryption key generated per build

Quick Setup

Install the module to your Nuxt application with one command:

npx nuxt module add nuxt-scramble

That's it! You can now use nuxt-scramble in your Nuxt app ✨

How It Works

  1. At build time, a random XOR encryption key is generated
  2. Matching patterns in HTML are encoded with this key on the server
  3. SSR renders a placeholder with the encoded data in a data-scramble attribute
  4. Client side JS decodes and replaces the placeholder with the real content
  5. A new key is generated for each build, making it harder for scrapers

Usage

ScrambleText Component

For explicit control, use the <ScrambleText> component:

<template>
  <ScrambleText text="[email protected]" type="email" :link="false" />
  <ScrambleText text="+1 123-456-7891" type="phone" />
  <ScrambleText text="I dont want this scraped" type="custom" />
</template>

Auto Scramble

When autoScramble is enabled (disabled by default), the module automatically finds and scrambles emails and phone numbers in your rendered HTML using a Nitro server plugin. This is ideal for prerendered/static sites.

Set autoScramble: true to enable with default patterns, or pass an object to customize, see below.

[!NOTE] Auto scramble has an performance impact on SSR as it processes all rendered HTML. Only enable it for prerendered/static sites.

Configuration

export default defineNuxtConfig({
  modules: ["nuxt-scramble"],
  scramble: {
    // automatically scramble matching patterns in rendered html (default: false)
    autoScramble: {
      // include default email/phone patterns (default: true)
      defaultPatterns: true,

      // custom patterns
      patterns: [
        {
          name: "custom",
          pattern: "\\d{3}-\\d{2}-\\d{4}",
          // optional regex flags, see https://www.w3schools.com/js/js_regexp_flags.asp
          flags: "gi",
        },
      ],
    },

    // auto generate mailto:/tel: links (default: true)
    autoLink: true,

    // placeholder text for no-JS fallback (default: '[protected]')
    placeholder: "[protected]",

    // customize data attribute (default: 'data-scramble')
    attribute: "data-scramble",

    // CSS class for scrambled elements (default: 'scrambled')
    className: "scrambled",
  },
});

Contribution

# Install dependencies
pnpm install

# Generate type stubs
pnpm run dev:prepare

# Develop with the playground
pnpm run dev

# Build the playground
pnpm run dev:build

# Run ESLint
pnpm run lint

# Run Vitest
pnpm run test
pnpm run test:watch

# Run E2E tests
pnpm test:e2e --project=ssr-dev-chrome    # Quick single check
pnpm test:e2e --project="*-firefox"       # All Firefox tests
pnpm test:e2e --project="ssg-*"           # All SSG tests
pnpm test:e2e                             # Full matrix (CI)

# Release new version
pnpm run release
pnpm run release:major