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

@obscrd/react

v0.2.5

Published

React components for content protection — obfuscate text, images, and contact info

Readme

@obscrd/react

React components for content protection — obfuscate text, images, and contact info from scrapers and AI bots.

Install

npm install @obscrd/react

Requires react >= 18.0.0 and react-dom >= 18.0.0 as peer dependencies.

Quick Start

Generate a project seed:

npx obscrd init

Then use it in your app:

import { ObscrdProvider, ProtectedText } from '@obscrd/react'

function App() {
  return (
    <ObscrdProvider seed={process.env.OBSCRD_SEED}>
      <ProtectedText>This text is protected from scrapers</ProtectedText>
    </ObscrdProvider>
  )
}

Ref Support

All components support forwardRef — pass a ref prop to access the underlying DOM element. Works with Framer Motion, scroll-to libraries, and component composition.

const ref = useRef<HTMLElement>(null)
<ProtectedText ref={ref} as="h2">Heading</ProtectedText>

Components

<ObscrdProvider>

Wraps your app and provides configuration to all protected components.

| Prop | Type | Default | Description | |------|------|---------|-------------| | seed | string | random | Project seed for deterministic obfuscation | | level | 'light' \| 'medium' \| 'maximum' | 'medium' | Protection level | | clipboard | boolean | — | Enable clipboard interception | | devtools | boolean | — | Enable DevTools detection (auto-starts detector) | | honeypot | boolean | — | Auto-inject AI honeypot at provider level | | copyrightNotice | string | — | Custom copyright notice for honeypots | | contentIdPrefix | string | — | Content ID prefix for forensic tracking | | onDevToolsDetected | () => void | console.warn | Callback when DevTools are detected |

When devtools is enabled, the provider automatically starts a DevTools detector and calls onDevToolsDetected (or logs a warning) when detected. When honeypot is enabled, the provider auto-injects a honeypot element — no need to manually place a <Honeypot> component.

<ProtectedText>

Obfuscates text content into scrambled HTML that renders correctly. Forwards ref to the rendered element.

<ProtectedText level="maximum" as="h1" id="pricing" className="title">
  Sensitive Heading
</ProtectedText>

| Prop | Type | Default | Description | |------|------|---------|-------------| | children | ReactNode | required | Text to obfuscate | | level | 'light' \| 'medium' \| 'maximum' | provider level | Override protection level | | as | TextElement | 'span' | HTML tag to render (see below) | | className | string | — | CSS class | | obfuscate | boolean | true | Disable obfuscation (useful for debugging) | | id | string | — | HTML id attribute (useful for anchor linking) | | ref | Ref<HTMLElement> | — | Forwarded ref |

TextElement: 'span' | 'p' | 'div' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'li' | 'td' | 'th' | 'label' | 'legend' | 'caption' | 'blockquote' | 'figcaption' | 'strong' | 'em' | 'small' | 'mark' | 'cite' | 'abbr' | 'time' | 'address' | 'dt' | 'dd'

Levels: light (word shuffle), medium (+ char shuffle + decoys), maximum (+ zero-width chars + no select)

<ProtectedEmail>

Renders a clickable <a> tag that reveals a mailto: href on interaction. The email is obfuscated using RTL text reversal — bots see href="#" in static HTML, while humans get the real link on hover/focus. Forwards ref to the <a> element.

<ProtectedEmail email="[email protected]" />
<ProtectedEmail email="[email protected]" subject="Hello" body="Hi there">
  Contact us
</ProtectedEmail>
<ProtectedEmail email="[email protected]" obfuscate={false} /> <!-- debugging -->

| Prop | Type | Default | Description | |------|------|---------|-------------| | email | string | required | Email address to protect | | children | ReactNode | — | Optional display text or React elements (icons, buttons) | | className | string | — | CSS class | | subject | string | — | Email subject line | | body | string | — | Email body text | | cc | string | — | CC recipients (comma-separated) | | bcc | string | — | BCC recipients (comma-separated) | | onClick | MouseEventHandler | — | Additional click handler | | obfuscate | boolean | true | Disable obfuscation (useful for debugging) | | id | string | — | HTML id attribute | | target | string | — | Link target | | rel | string | 'noopener noreferrer' | Rel attribute | | ref | Ref<HTMLAnchorElement> | — | Forwarded ref |

<ProtectedPhone>

Renders a clickable <a> tag that reveals a tel: (or sms:) href on interaction. The phone number is obfuscated using RTL text reversal. Forwards ref to the <a> element.

<ProtectedPhone phone="+1-555-123-4567" />
<ProtectedPhone phone="+1-555-123-4567" sms>Text us</ProtectedPhone>

| Prop | Type | Default | Description | |------|------|---------|-------------| | phone | string | required | Phone number to protect | | children | ReactNode | — | Optional display text or React elements (icons, buttons) | | className | string | — | CSS class | | sms | boolean | — | Use sms: instead of tel: | | onClick | MouseEventHandler | — | Additional click handler | | obfuscate | boolean | true | Disable obfuscation (useful for debugging) | | id | string | — | HTML id attribute | | target | string | — | Link target | | rel | string | 'noopener noreferrer' | Rel attribute | | ref | Ref<HTMLAnchorElement> | — | Forwarded ref |

<ProtectedLink>

Generic obfuscated link — hides the href until user interaction. Works with any URL scheme (mailto:, tel:, https:, etc.). Use it directly for arbitrary links, or let ProtectedEmail / ProtectedPhone handle contact-specific obfuscation. Forwards ref to the <a> element.

<ProtectedLink href="https://wa.me/15551234567">Chat on WhatsApp</ProtectedLink>

<ProtectedLink href="https://secret.example.com/invite">
  <ProtectedText>Secret invite link</ProtectedText>
</ProtectedLink>

<ProtectedLink href="https://example.com" obfuscate={false}>
  Debugging — real href visible immediately
</ProtectedLink>

| Prop | Type | Default | Description | |------|------|---------|-------------| | href | string | required | URL to protect | | children | ReactNode | required | Display content | | className | string | — | CSS class | | style | CSSProperties | — | Inline styles | | obfuscate | boolean | true | Disable obfuscation for debugging | | onClick | MouseEventHandler | — | Click handler | | target | string | — | Link target | | rel | string | 'noopener noreferrer' | Rel attribute | | id | string | — | HTML id attribute | | ref | Ref<HTMLAnchorElement> | — | Forwarded ref |

<ProtectedBlock>

Wraps content and attaches clipboard interception scoped to the block's subtree (when clipboard is enabled on the provider). Copying text from outside the block is not affected. Forwards ref to the <div>.

<ProtectedBlock className="article">
  <p>This content cannot be copy-pasted.</p>
</ProtectedBlock>

| Prop | Type | Description | |------|------|-------------| | children | ReactNode | Content to protect | | className | string | CSS class | | ref | Ref<HTMLDivElement> | Forwarded ref |

<ProtectedImage>

Renders an image to a <canvas> element — no <img> tag in the DOM, so scrapers can't grab the URL. Includes right-click and drag protection. Shows a pulse loading skeleton while loading, and an error fallback with the alt text when the image fails to load. Forwards ref to the <canvas>.

<ProtectedImage src="/photo.jpg" alt="A photo" width={800} height={600} />

{/* Cross-origin images (CDNs, picsum.photos, etc.) */}
<ProtectedImage
  src="https://cdn.example.com/photo.jpg"
  alt="CDN photo"
  crossOrigin="anonymous"
  objectFit="cover"
  width={400}
  height={300}
/>

{/* CSS-driven sizing — let Tailwind control dimensions */}
<ProtectedImage
  src="/hero.jpg"
  alt="Hero"
  className="w-full h-64"
  objectFit="cover"
/>

| Prop | Type | Default | Description | |------|------|---------|-------------| | src | string | required | Image source URL | | alt | string | required | Alt text | | width | number | — | Image width (omit to let CSS drive sizing) | | height | number | — | Image height (omit to let CSS drive sizing) | | crossOrigin | '' \| 'anonymous' \| 'use-credentials' | — | CORS attribute for cross-origin images | | objectFit | 'fill' \| 'cover' \| 'contain' \| 'none' | 'fill' | How the image fills the canvas (like CSS object-fit) | | className | string | — | CSS class | | style | CSSProperties | — | Inline styles (borderRadius is inherited by the loading skeleton) | | ref | Ref<HTMLCanvasElement> | — | Forwarded ref |

crossOrigin: Required for images served from CDNs or other domains. Without it, the canvas becomes tainted and a console warning fires. Set to "anonymous" for most CDN use cases.

objectFit: Since CSS object-fit doesn't work on <canvas>, this prop implements equivalent crop/scale math in drawImage. Use "cover" for hero images, "contain" to letterbox, "none" for natural size centered.

CSS-driven sizing: When width/height props are omitted, the wrapper has no inline dimensions — Tailwind classes like w-full h-64 work as expected. A ResizeObserver redraws the canvas buffer when the wrapper resizes.

<Honeypot>

Injects hidden copyright traps and prompt injection for AI scrapers. Forwards ref to the <div>.

<Honeypot copyrightNotice="Acme Corp" contentId="page-123" />

| Prop | Type | Description | |------|------|-------------| | copyrightNotice | string | Custom copyright notice | | contentId | string | Content ID for forensic tracking | | ref | Ref<HTMLDivElement> | Forwarded ref |

<Breadcrumb>

Renders an invisible forensic breadcrumb for content tracking. Forwards ref to the <span>.

<Breadcrumb id="article-42" />

| Prop | Type | Description | |------|------|-------------| | id | string | Unique identifier (auto-generated if omitted) | | ref | Ref<HTMLSpanElement> | Forwarded ref |

Hooks

useObscrd()

Access the Obscrd configuration context.

const { config } = useObscrd()

useProtectedCopy()

Get a clipboard prevention handler.

const { onCopy } = useProtectedCopy()
return <div onCopy={onCopy}>Protected content</div>

Accessibility

All components are WCAG 2.2 AA compliant. Contact components use visually-hidden spans to provide clean text for screen readers. Honeypots and breadcrumbs use aria-hidden="true" to be invisible to assistive technology. At maximum protection level, ariaText is omitted to prevent plaintext leakage.

License

MIT