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

@evolution-james/evolution-editor

v1.0.5

Published

A modular, block-based rich text editor for React

Readme

Evolution Editor (Overview)

Evolution Editor is a standalone, rich text editor React component designed for easy integration into any React project. It supports both read-only and editable modes, JSON import/export, and theming via CSS variables.

Live Demo
Live Demo (Source Code)

Table of Contents

Features

User Features

  • 📝 Paragraph & Heading blocks (H1, H2, H3)
  • 🎨 Text color & font size customization
  • 📋 Ordered & unordered lists (with nesting)
  • 🖼️ Image embeds via URL
  • 🎥 YouTube video embeds via URL (share-link URL, not embed HTML)
  • ➖ Horizontal dividers
  • 💾 JSON import/export
  • 🧩 Customizable styles, colors, and font sizes

Developer Features

  • Modular, block-based architecture
  • Extensible: add new block types easily

Requirements

Evolution Editor is a React component library. To use it in your project (whether installed from npm or otherwise), your project must be a React project with react and react-dom as dependencies.

Quick Start: Create a React Project

If you need to create a new React project, you can use Create React App:

npx create-react-app my-app

Replace my-app with your desired project name. Once your React project is set up, you can install Evolution Editor from npm and start using it as described below.

Installation & Import

Install from npm

npm install @evolution-james/evolution-editor

Import the component

import { EvolutionEditor } from '@evolution-james/evolution-editor';
import '@evolution-james/evolution-editor/dist/styles.css';

Props

| Prop | Type | Required | Description | |----------------|------------|----------|-----------------------------------------------------------------------------| | initialData | object | No | JSON object representing the editor's initial content. | | onSave | function | No | Callback invoked with JSON when the user saves (edit mode only). | | editable | boolean | No | If true, enables editing. If false/omitted, editor is read-only. | | placeholder | string | No | Placeholder text for empty editor (edit mode only). | | showBranding | boolean | No | If true (default), displays the Evolution Editor brand/logo at the top, during edit mode. If false, branding is hidden. In read-only mode, branding is always hidden regardless. |

Styling Guidelines

Parent Container CSS Class

To constrain the size of your editor, I recommend wrapping it in a container element, such as a <div> with the class .container You can then apply styling as you'd like. For example, if you wish to restrict its width to 80% of the viewport and it's height to 800 pixels, and you wish to center it, you could do this:

.container {
  height: 800px !important;
  width: 80%; !important;
  margin: auto;
}

CSS Variables Used

Evolution Editor uses the following CSS variables for theming. Define these in your global CSS or :root for custom themes:

  • --color-bg – Editor background
  • --color-text – Editor text color
  • --color-card-bg – Toolbar and block background
  • --color-card-border – Toolbar and block border
  • --color-divider – Toolbar divider
  • --color-btn-light-bg – Toolbar button hover

Example Usage

  <div className="container">
    <EvolutionEditor
      initialData={myJson}
      onSave={handleSave}
      editable={true}
      placeholder="Start writing..."
      showBranding={false} // Hide branding/logo (optional)
    />
  </div>

Example handleSave Function

A typical usage pattern is to keep the editor's content in React state and update it whenever the user saves. This ensures the editor always displays the latest content:

import React, { useState } from 'react';
import { EvolutionEditor } from './evolution-editor';

function MyEditorContainer() {
  const [editorContent, setEditorContent] = useState(initialJson); // initialJson is your starting data

  function handleSave(newJson) {
    setEditorContent(newJson); // Update state with the new content
    // Optionally, persist to server/localStorage here
    // localStorage.setItem('myEditorContent', JSON.stringify(newJson));
    // fetch('/api/save', { method: 'POST', body: JSON.stringify(newJson) });
    console.log('Editor content saved:', newJson);
  }

  return (
    <div className="container">
      <EvolutionEditor
        initialData={editorContent}
        onSave={handleSave}
        editable={true}
        placeholder="Start writing..."
      />
    </div>
  );
}

This pattern keeps the editor’s content in sync with your app’s state and ensures the latest content is always shown.

Read-Only vs Edit Modes

  • Edit Mode (editable={true}):
    • User can type, format, and manipulate content.
    • Toolbar is visible.
    • onSave callback is available.
  • Read-Only Mode (editable={false} or omitted):
    • Content is rendered as static HTML.
    • Toolbar and editing controls are hidden.

JSON Exporting

  • The editor's content is stored as a JSON object.
  • To export, use the onSave callback, which receives the current JSON when the user saves.
  • You can also access the editor's state via ref if needed (see advanced usage).

JSON Export Structure

Evolution Editor exports/imports content as a JSON object with the following structure:

{
  "version": "1.0.0",
  "time": 1645123456789,
  "blocks": [
    {
      "id": "block_unique_id",
      "type": "heading",
      "data": {
        "level": 1,
        "text": "My Title",
        "htmlTag": "h1",
        "styles": {
          "color": "#000000",
          "fontSize": "32px",
          "marginTop": "0px",
          "marginBottom": "16px",
          "marginLeft": "0px",
          "marginRight": "0px",
          "paddingTop": "0px",
          "paddingBottom": "0px",
          "paddingLeft": "0px",
          "paddingRight": "0px"
        }
      }
    },
    {
      "id": "block_2",
      "type": "image",
      "data": {
        "url": "https://example.com/image.jpg",
        "alt": "Alt text",
        "styles": {
          "maxWidth": "100%"
        }
      }
    },
    {
      "id": "block_3",
      "type": "youtube",
      "data": {
        "videoId": "VIDEO_ID",
        "styles": {
          "width": "560px",
          "height": "315px"
        }
      }
    }
    // ...other blocks
  ]
}

Each block type has its own data structure. See the source code for more details on each block's properties.


License

Copyright (c) 2026 Evolution Coding Academy (@evolution-james / @james-evolution)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to use, copy, modify, merge, and distribute the Software in source or binary forms, subject to the following conditions:

  1. Commercial Use Restriction: The Software may not be sold, sublicensed, or otherwise distributed as a standalone product, or as a substantially similar derivative, for direct commercial gain. You may not offer the Software, with or without modification, as a paid product or as part of a paid library, toolkit, or component collection.

  2. Permitted Commercial Use: The Software may be used as part of a larger application, product, or service, including commercial products, provided that the Software is not the primary, sole, or core component being sold or licensed. The Software must not be the main value or selling point of the product.

  3. Attribution: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

  4. No Warranty: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For questions or commercial licensing, contact: [email protected]