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

@bytecrate/react-editor

v1.1.0

Published

A lightweight, dependency-free React editor.

Readme

@bytecrate/react-editor

A lightweight, robust, and feature-rich React email template editor. Built with native contentEditable APIs for maximum compatibility and minimal bundle size.

Features

  • Rich Text Formatting: Bold, Italic, Underline, Strikethrough, Heading levels.
  • Typography Control: Font Family selection and precise Font Size (px) control.
  • Styling: Text color picker with presets and custom color support.
  • Layout: Advanced padding controls for individual sides (Top, Right, Bottom, Left) on specific blocks.
  • Structure: Ordered and Unordered lists, Blockquotes.
  • Media & Links: Image insertion via URL, File Upload (Base64 default, custom async upload supported), and Hyperlink management.
  • Templating: Built-in variable/merge-tag insertion as non-editable chips (serializes to plain {{tokens}} for hosts).
  • History: Undo/Redo functionality.
  • Keyboard shortcuts: Mod+B/I/U for formatting, Mod+K for links, Mod+Z / Mod+Shift+Z / Mod+Y for undo/redo (disable with enableShortcuts={false}).
  • Accessibility baseline: Named toolbar controls, labeled editor surface, picker dialogs/menus, and Escape-to-close.
  • Paste / HTML sanitization: By default, paste and external HTML entry points strip common unsafe patterns (scripts, event handlers, dangerous URLs) while keeping email-friendly markup and merge tags.
  • Zero Styles Configuration: Works out of the box with internal styling, but accepts external classes.

Installation

npm install @bytecrate/react-editor
# or
yarn add @bytecrate/react-editor

Usage

Uncontrolled (seed once with initialValue)

import React, { useState } from 'react';
import { EmailEditor } from '@bytecrate/react-editor';

const MyEmailApp = () => {
  const [htmlContent, setHtmlContent] = useState('');

  return (
    <div className="p-10">
      <EmailEditor 
        initialValue="<p>Hello there,</p>"
        onChange={(html) => setHtmlContent(html)}
        placeholder="Start crafting your email..."
        style={{ minHeight: '400px' }}
      />
      
      <div className="mt-4">
        <h3>Output:</h3>
        <pre>{htmlContent}</pre>
      </div>
    </div>
  );
};

export default MyEmailApp;

Controlled (value + onChange)

Use value when the parent owns the HTML (template switchers, forms, load-from-API). The editor DOM updates when value changes and differs from the current content. Prefer not to rewrite value on every keystroke with transformed HTML that differs only in formatting — that can move the caret.

const [html, setHtml] = useState('<p>Hello</p>');

<EmailEditor value={html} onChange={setHtml} />

// Reset without remounting:
// setHtml(SAMPLE_HTML);

If both value and initialValue are passed, value wins after mount.

Imperative ref API

import React, { useRef } from 'react';
import { EmailEditor, type EmailEditorRef } from '@bytecrate/react-editor';

const editorRef = useRef<EmailEditorRef>(null);

<EmailEditor ref={editorRef} onChange={setHtml} />

// editorRef.current?.focus()
// editorRef.current?.getHTML()
// editorRef.current?.setHTML('<p>Hi</p>')  // also calls onChange
// editorRef.current?.clear()
// editorRef.current?.getContentElement()

Image Upload Handling

By default, images selected from the device are converted to Base64 strings. To upload images to a server (e.g., AWS S3, Cloudinary) and use the resulting URL, provide the onImageUpload prop.

<EmailEditor 
  onImageUpload={async (file) => {
    // Example: Upload file to your server
    const formData = new FormData();
    formData.append('image', file);
    
    const response = await fetch('/api/upload', {
      method: 'POST',
      body: formData
    });
    
    const data = await response.json();
    return data.url; // Return the hosted image URL
  }}
  onImageUploadError={(err) => {
    // Surface upload failures in your host UI (toast, banner, etc.)
    console.error(err);
  }}
  defaultImageAlt="Product image"
/>

Alt text and link wrap

Inserted images always get an alt attribute:

  • URL insert — the image picker collects URL and optional alt text.
  • Device upload — uses defaultImageAlt when set; otherwise the file name without extension (or empty string).
  • Selected image — click an image to open a small properties bar for live alt editing and optional link wrap. Empty link + Apply unwraps an existing anchor. Links use target="_blank" and rel="noopener noreferrer" (email clients vary on target; document as needed for your ESP).

Empty alt is valid for decorative images; hosts should pass meaningful defaultImageAlt for accessibility and ESP lint rules.

Custom Variables / merge-tag chips

You can pass a custom list of variables (merge tags) that appear in the {} toolbar dropdown.

By default (variablesAsChips={true}), variables insert as non-editable chips in the editor UI:

  • Display DOM: a contenteditable="false" span (.ree-merge-tag) showing the variable label, with the raw token in data-merge-tag.
  • onChange / getHTML output (policy B): chips are serialized back to plain tokens (e.g. {{firstName}}) so hosts can keep using html.replaceAll('{{x}}', …) without parsing chip markup.
  • Load path: initialValue, controlled value, and ref.setHTML hydrate plain {{…}} tokens in text nodes into chips (link href merge tags stay as attribute text — they are not chips).
const myVariables = [
  { label: 'User Name', value: '{{user.name}}' },
  { label: 'Order ID', value: '{{order.id}}' },
  { label: 'Unsubscribe', value: '{{unsubscribe_url}}' }
];

<EmailEditor 
  variables={myVariables} 
  onChange={handleChange} 
/>

Legacy plain-text insert (no chips):

<EmailEditor variables={myVariables} variablesAsChips={false} />

Note: Changing the variables list mid-edit does not re-label existing chips (avoids caret jumps). Remount or setHTML if you need a full re-hydrate.

HTML sanitization and paste

By default (sanitize={true}), the editor sanitizes common unsafe patterns for email HTML on:

  • Paste into the contenteditable surface
  • Mount seed (initialValue / controlled value)
  • Imperative ref.setHTML(...)
  • Link and image URL apply (toolbar / prompt)

Allowed URL schemes for href / src: http:, https:, mailto:, cid:, # anchors, relative paths, data:image/*, and full merge tags such as {{unsubscribe}}. Dangerous schemes like javascript: and data:text/html are rejected (links/images not applied; attributes stripped from HTML).

This is not a claim of being XSS-proof. Hosts that load untrusted templates should still treat output carefully. For trusted admin tools only, you can disable sanitization:

// Escape hatch — only for fully trusted content
<EmailEditor sanitize={false} initialValue={trustedHtml} />

Optional paste override (replaces the built-in sanitizer for clipboard HTML only — seed/setHTML/URLs still use the built-in policy when sanitize is true). Treat onPasteHtml as a full trust boundary for paste: return only safe HTML.

<EmailEditor onPasteHtml={(html) => mySanitize(html)} />

Accessibility

The toolbar uses role="toolbar" and icon buttons expose accessible names via aria-label (and aria-pressed for toggles). The content surface is a multiline textbox labeled by ariaLabel, falling back to placeholder, then "Email content".

<EmailEditor
  ariaLabel="Newsletter body"
  placeholder="Start crafting your email..."
/>

Picker dropdowns use aria-expanded / aria-haspopup on triggers and role="dialog" or role="menu" on panels. Press Escape to close an open picker and return focus to its trigger.

Keyboard shortcuts

When focus is inside the editor surface (enableShortcuts defaults to true), the following shortcuts apply. Mod is ⌘ on macOS and Ctrl elsewhere.

| Shortcut | Action | |----------|--------| | Mod+B | Bold | | Mod+I | Italic | | Mod+U | Underline | | Mod+K | Open link picker (selection is saved first) | | Mod+Z | Undo | | Mod+Shift+Z / Mod+Y | Redo |

Shortcuts are not handled while typing in toolbar inputs (link URL, color picker, selects). Disable with enableShortcuts={false} if the host app provides its own bindings.

Props API

| Prop | Type | Default | Description | |------|------|---------|-------------| | initialValue | string | "" | Uncontrolled seed HTML applied on mount only. | | value | string | - | Controlled HTML. When set, DOM syncs when the string changes. | | onChange | (html: string) => void | - | Callback fired whenever content changes (including ref.setHTML / clear). | | variables | Array<{ label: string, value: string }> | DEFAULT_VARIABLES | Array of variables for the insert dropdown. | | variablesAsChips | boolean | true | Insert variables as non-editable chips in the DOM; onChange/getHTML still emit plain tokens. Set false for legacy insertText. | | placeholder | string | "Start writing..." | Placeholder text shown when empty; also used as the surface accessible name when ariaLabel is omitted. | | ariaLabel | string | - | Accessible name for the contenteditable surface (overrides placeholder for a11y). | | enableShortcuts | boolean | true | Handle Mod+B/I/U/K/Z (and redo) while the editor surface is focused. | | defaultPadding | string | "24px" | Default padding applied to the main container. | | onImageUpload | (file: File) => Promise<string> | - | Callback to handle custom image uploads (overrides Base64). | | onImageUploadError | (error: unknown) => void | - | Called when onImageUpload rejects so hosts can show UI. | | defaultImageAlt | string | "" | Default alt for newly inserted images when the user does not supply one. | | sanitize | boolean | true | Sanitize paste, external HTML, and block dangerous link/image URLs. Set false only for trusted admin tools. | | onPasteHtml | (html: string) => string | - | Optional paste transform; when set, used instead of the built-in sanitizer for clipboard HTML. | | style | React.CSSProperties | - | Inline styles for the outer editor container. | | className | string | "" | CSS class names for the outer editor container. |

Ref methods (EmailEditorRef)

| Method | Description | |--------|-------------| | focus() | Focus the contenteditable surface. | | getHTML() | Return current serialized HTML. | | setHTML(html) | Replace editor HTML and notify onChange. | | clear() | Clear content (equivalent to setHTML("")). | | getContentElement() | Return the contenteditable HTMLDivElement, or null. |

Development

Consumers install from npm and import @bytecrate/react-editor as shown above. The published package ships dual ESM/CJS builds and TypeScript types under dist/.

Run the in-repo playground to exercise the editor without installing it into another project (dev aliases the package to source for HMR):

npm install
npm run dev   # http://localhost:3000

Other local checks:

npm test
npm run lint
npm run typecheck
npm run build   # emit dist/ (also runs via prepublishOnly before publish)

Dependencies

This package relies on lucide-react for its icons, which is installed automatically as a dependency.

License

MIT