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

dyelight

v1.2.0

Published

A lightweight TypeScript React component to allow highlighting characters in textareas.

Readme

DyeLight

A lightweight TypeScript React component for highlighting characters in textareas with powerful text annotation capabilities.

Demo

wakatime codecov Bun Node.js CI GitHub License GitHub Release Size typescript npm GitHub issues GitHub stars NPM Version Vercel Deploy

Features

  • Absolute Position Highlighting: Highlight text using simple start/end positions across the entire text
  • Multi-line Support: Highlights automatically span across line breaks
  • Line-level Highlighting: Optional background highlighting for entire lines
  • Pattern Matching: Built-in support for regex and keyword highlighting
  • Auto-resize: Automatic textarea height adjustment based on content
  • TypeScript: Full TypeScript support with comprehensive type definitions
  • Lightweight: Minimal dependencies, optimized for performance
  • Flexible Styling: Support for CSS classes on both the textarea (className) and the wrapper container (containerClassName)
  • Modern UI Friendly: Optimized for integration with Tailwind CSS and UI libraries like shadcn/ui
  • Smart Placeholder: Placeholders remain visible even with the transparent character-highlighting overlay
  • Storybook Playground: Explore the component interactively with the bundled Storybook setup
  • AI-Powered Debugging: Built-in telemetry system for diagnosing sync issues with AI assistance

Development

This project uses Bun for dependency management and scripts.

bun install

Tooling

  • Biome – linting and formatting use the latest Biome-recommended rules defined in biome.json.
  • tsdown – builds rely on the upstream tsdown CLI configured in tsdown.config.ts.
  • Storybook – interactive documentation lives under .storybook with stories in src/**/*.stories.tsx.
  • Testing Library – unit tests rely on the latest @testing-library/react and @testing-library/dom helpers.

Available scripts

  • bun run build – bundle the library with tsdown and emit declarations.
  • bun run test – execute the Bun-powered unit tests with coverage for every hook and the DyeLight component.
  • bun run storybook – start Storybook locally at http://localhost:6006 to demo the component.
  • bun run storybook:build – produce a static Storybook build.
  • bun run lint / bun run format – lint and format the project with Biome.

Storybook ships with example stories under src/DyeLight.stories.tsx that showcase auto-resize, line-level highlights, and interactive editing.

Installation

npm install dyelight
yarn add dyelight
pnpm add dyelight

Basic Usage

import React, { useState } from 'react';
import { DyeLight, HighlightBuilder } from 'dyelight';

function MyEditor() {
    const [text, setText] = useState('Hello world\nThis is line 2');

    // Highlight characters 0-5 (absolute positions)
    const highlights = HighlightBuilder.ranges([
        { start: 0, end: 5, className: 'bg-yellow-200' },
        { start: 12, end: 24, className: 'bg-blue-200' },
    ]);

    return (
        <DyeLight
            value={text}
            onChange={setText}
            highlights={highlights}
            className="w-full p-2 border rounded"
            rows={4}
        />
    );
}

Advanced Usage

Pattern-based Highlighting

import { DyeLight, HighlightBuilder } from 'dyelight';

function CodeEditor() {
    const [code, setCode] = useState(`
function hello() {
  const message = "Hello World";
  console.log(message);
}
  `);

    // Highlight JavaScript keywords
    const keywordHighlights = HighlightBuilder.pattern(
        code,
        /\b(function|const|let|var|if|else|for|while)\b/g,
        'text-blue-600 font-semibold',
    );

    // Highlight strings
    const stringHighlights = HighlightBuilder.pattern(code, /"[^"]*"/g, 'text-green-600');

    // Highlight specific words
    const wordHighlights = HighlightBuilder.words(code, ['console', 'log'], 'text-purple-600');

    return (
        <DyeLight
            value={code}
            onChange={setCode}
            highlights={[...keywordHighlights, ...stringHighlights, ...wordHighlights]}
            className="font-mono text-sm"
            enableAutoResize
        />
    );
}

Line Highlighting

function ErrorHighlighter() {
    const [text, setText] = useState('Line 1\nLine 2 with error\nLine 3');

    // Highlight line 1 (0-indexed) with error styling
    const lineHighlights = HighlightBuilder.lines([
        { line: 1, className: 'bg-red-100' },
        { line: 2, color: '#e8f5e8' }, // Or use direct color
    ]);

    return <DyeLight value={text} onChange={setText} lineHighlights={lineHighlights} />;
}

Character-level Highlighting

function CharacterHighlighter() {
    const [text, setText] = useState('Hello World');

    // Highlight individual characters
    const characterHighlights = HighlightBuilder.characters([
        { index: 0, className: 'bg-red-200' }, // 'H'
        { index: 6, className: 'bg-blue-200' }, // 'W'
        { index: 10, style: { backgroundColor: 'yellow' } }, // 'd'
    ]);

    return <DyeLight value={text} onChange={setText} highlights={characterHighlights} />;
}

Using Refs

function RefExample() {
    const dyeLightRef = useRef<DyeLightRef>(null);
    const [text, setText] = useState('');

    const handleFocus = () => {
        dyeLightRef.current?.focus();
    };

    const handleSelectAll = () => {
        dyeLightRef.current?.select();
    };

    const handleGetValue = () => {
        const value = dyeLightRef.current?.getValue();
        console.log('Current value:', value);
    };

    return (
        <div>
            <DyeLight ref={dyeLightRef} value={text} onChange={setText} />
            <button onClick={handleFocus}>Focus</button>
            <button onClick={handleSelectAll}>Select All</button>
            <button onClick={handleGetValue}>Get Value</button>
        </div>
    );
}

AI-Powered Debugging

DyeLight includes a built-in telemetry system that can help diagnose synchronization issues between the textarea and React state. This is especially useful for hard-to-reproduce bugs.

Enabling Debug Mode

Simply add the debug prop to enable telemetry collection:

import { useRef, useState } from 'react';
import { DyeLight, type DyeLightRef } from 'dyelight';

function DebugExample() {
    const [text, setText] = useState('');
    const dyeLightRef = useRef<DyeLightRef>(null);

    const handleExportDebug = async () => {
        const report = dyeLightRef.current?.exportForAI();
        
        if (report) {
            // Copy to clipboard
            await navigator.clipboard.writeText(report);
            alert('Debug report copied! Paste it into Claude or ChatGPT for analysis.');
        }
    };

    return (
        <div>
            <DyeLight
                ref={dyeLightRef}
                value={text}
                onChange={setText}
                debug={true}
                rows={10}
            />
            
            <button onClick={handleExportDebug}>
                Export Debug Report
            </button>
        </div>
    );
}

Using the Debug Report

When you experience sync issues:

  1. Enable debug mode - Add debug={true} to your DyeLight component
  2. Reproduce the issue - Use the component normally until the bug occurs
  3. Export the report - Call ref.current?.exportForAI() to get a JSON report
  4. Get AI diagnosis:
    • Go to claude.ai or chat.openai.com
    • Paste the exported JSON
    • Ask: "Please analyze this DyeLight debug report and identify the issue"
  5. Get instant diagnosis - The AI will identify the root cause and suggest fixes

What's Included in Debug Reports

The exported report contains:

  • Complete event timeline - Every onChange, resize, and sync operation
  • State snapshots - DOM and React state at each event
  • Automatic issue detection - Pre-identified problems like:
    • State mismatches between DOM and React
    • Rapid successive events (race conditions)
    • Excessive resize operations
    • Layout thrashing
  • Timing information - Millisecond-precise event timing
  • Browser metadata - User agent, platform, React version
  • AI instructions - Built-in guidance for AI analysis

Debug Mode Options

<DyeLight
    debug={true}              // Enable telemetry collection
    debugMaxEvents={1000}     // Max events to retain (default: 1000)
    value={text}
    onChange={setText}
/>

Note: Debug mode has minimal performance impact but should generally be disabled in production unless troubleshooting specific issues.

API Reference

DyeLight Props

| Prop | Type | Default | Description | | ------------------ | ---------------------------------- | ----------- | ------------------------------------ | | value | string | undefined | Controlled value | | defaultValue | string | '' | Default value for uncontrolled usage | | onChange | (value: string) => void | undefined | Callback when value changes | | highlights | CharacterRange[] | [] | Character range highlights | | lineHighlights | { [lineNumber: number]: string } | {} | Line-level highlights | | enableAutoResize | boolean | true | Enable auto-height adjustment | | className | string | '' | CSS class for the textarea element | | containerClassName | string | '' | CSS class for the wrapper container | | dir | 'ltr' \| 'rtl' | 'ltr' | Text direction | | rows | number | 4 | Number of visible rows | | debug | boolean | false | Enable telemetry collection | | debugMaxEvents | number | 1000 | Max telemetry events to retain |

All standard textarea HTML attributes are also supported.

CharacterRange

type CharacterRange = {
    start: number; // Start position (inclusive)
    end: number; // End position (exclusive)
    className?: string; // CSS class name
    style?: React.CSSProperties; // Inline styles
};

DyeLightRef Methods

| Method | Description | | ------------------------------- | -------------------------- | | focus() | Focus the textarea | | blur() | Blur the textarea | | select() | Select all text | | setSelectionRange(start, end) | Set text selection | | getValue() | Get current value | | setValue(value) | Set value programmatically | | scrollToPosition(pos, offset?, behavior?) | Scroll to character position | | exportForAI() | Export debug report (requires debug={true}) |

HighlightBuilder Utilities

HighlightBuilder.ranges(ranges)

Create highlights from character ranges.

HighlightBuilder.pattern(text, pattern, className?, style?)

Highlight text matching a regex pattern.

HighlightBuilder.words(text, words, className?, style?)

Highlight specific words.

HighlightBuilder.characters(chars)

Highlight individual characters by index.

HighlightBuilder.selection(start, end, className?, style?)

Create a single selection highlight.

HighlightBuilder.lines(lines)

Create line-level highlights.

Styling

DyeLight uses CSS-in-JS for core functionality but allows complete customization through CSS classes.

Modern Layout & UI (Tailwind CSS)

To achieve modern UI effects like focus rings or shadow-depth, apply the layout and border styles to the containerClassName. Apply the inner spacing and typography to the className.

<DyeLight
    // Outer shell: handles layout, borders, and focus rings
    containerClassName={cn(
        "flex-1 min-h-0 rounded-md border border-input bg-background shadow-xs",
        "focus-within:border-ring focus-within:ring-[3px] focus-within:ring-ring/50"
    )}
    // Inner textarea: handles text color, spacing, and resizing
    className="h-full w-full bg-transparent px-3 py-2 text-base outline-none"
    placeholder="Start typing..."
    enableAutoResize={false}
/>

Example CSS Classes

.highlight-keyword {
    background-color: #e3f2fd;
    color: #1976d2;
    font-weight: 600;
}

.highlight-error {
    background-color: #ffebee;
    color: #c62828;
    text-decoration: underline wavy red;
}

.highlight-string {
    background-color: #e8f5e8;
    color: #2e7d32;
}

Browser Support

DyeLight supports all modern browsers including:

  • Chrome 60+
  • Firefox 60+
  • Safari 12+
  • Edge 79+

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Install dependencies with bun install.
  2. Run bun run lint and bun test to ensure code style and tests pass.
  3. Use bun run storybook to verify UI changes where relevant.

License

MIT © Ragaeeb Haq