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

@mbs-dev/react-editor

v1.13.6

Published

react editor

Readme

@mbs-dev/react-editor

A lightweight, typed React wrapper around Jodit rich‑text editor, designed for real‑world CRUD forms (blogs, products, CMS pages, etc.).

It provides:

  • A simple React component <ReactEditor />
  • A reusable config() helper for configuration
  • A reusable uploaderConfig() helper
  • A new onDeleteImage callback to delete images on server when removed from editor

npm version npm downloads bundle size


✨ Features

  • 🧩 Simple React API
  • ⚙️ Powerful config builder (config())
  • 🖼️ Image upload support
  • 🗑️ New: Server‑side image delete support (onDeleteImage)
  • 🔥 Fully typed (TS/TSX)
  • 📦 Built for npm libraries

📦 Installation

npm install @mbs-dev/react-editor

🚀 Quick Start

import React, { useMemo, useState } from "react";
import ReactEditor, { config } from "@mbs-dev/react-editor";

const MyPage = () => {
  const [content, setContent] = useState("");

  const editorConfig = useMemo(() => config({}), []);

  return (
    <ReactEditor
      config={editorConfig}
      value={content}
      onChange={setContent}
    />
  );
};

🔧 Configuration (Full API)

config(params: ConfigParams)

type ConfigParams = {
  includeUploader?: boolean;
  apiUrl?: string;
  imageUrl?: string;
  onDeleteImage?: (imageUrl: string) => void | Promise<void>;
};

Example

const editorConfig = useMemo(
  () =>
    config({
      includeUploader: true,
      apiUrl: `${apiUrl}/upload`,
      imageUrl: blogPostImgUrl,
      onDeleteImage: handleDeleteImage,
    }),
  []
);

🖼️ Image Uploading

The backend must return:

{
  "success": true,
  "data": {
    "files": ["uploaded.webp"],
    "messages": []
  },
  "msg": "Upload successful"
}

Images get inserted automatically:

<img src="https://domain.com/uploads/images/filename.webp" />

🗑️ NEW — Image Delete (Server Sync)

The editor detects removed <img> tags and calls your function:

TSX Implementation

const handleDeleteImage = async (imageSrc: string) => {
  const filename = imageSrc.split("/").pop();
  if (!filename) return;

  await axios.delete(`${apiUrl}/delete/${filename}`);
};

🧩 Full TSX Example (Add Blog)

const AddBlog = () => {
  const [description, setDescription] = useState("");

  const handleDeleteImage = async (imageSrc: string) => {
    const filename = imageSrc.split("/").pop();
    if (!filename) return;
    await axios.delete(`${apiUrl}/delete/${filename}`);
  };

  const editorConfig = useMemo(
    () =>
      config({
        includeUploader: true,
        apiUrl: `${apiUrl}/upload`,
        imageUrl: blogPostImgUrl,
        onDeleteImage: handleDeleteImage,
      }),
    []
  );

  return (
    <ReactEditor
      config={editorConfig}
      value={description}
      onChange={setDescription}
    />
  );
};

🧩 Symfony API Platform Full Example

1. Upload base directory

config/services.yaml

parameters:
    blog_post_images: '%kernel.project_dir%/public/uploads/images_dir'

2. Symfony Upload & Delete Service

<?php

final class UploaderService
{
    public function __construct(
        private readonly EntityManagerInterface $entityManager,
        private readonly ParameterBagInterface $params
    ) {}

    public function uploadBlogPostImages(array $uploadedFiles): array
    {
        if ($uploadedFiles === []) {
            throw new BadRequestHttpException('Les fichiers sont requis.');
        }

        $uploadedFileNames = [];

        foreach ($uploadedFiles as $file) {
            if (!$file instanceof UploadedFile) {
                continue;
            }

            $image = new BlogPostImages();
            $image->setImageFile($file);

            $this->entityManager->persist($image);
            $uploadedFileNames[] = $image->getImage();
        }

        if ($uploadedFileNames === []) {
            throw new BadRequestHttpException('Aucun fichier valide n’a été fourni.');
        }

        $this->entityManager->flush();

        return $uploadedFileNames;
    }

    public function deleteBlogPostImage(string $filename): void
    {
        $cleanName = basename($filename);

        $imageEntity = $this->entityManager
            ->getRepository(BlogPostImages::class)
            ->findOneBy(['image' => $cleanName]);

        if (!$imageEntity) {
            throw new NotFoundHttpException("L'image demandée n'existe pas.");
        }

        $fileDir = str_replace('\\', '/', $this->params->get('blog_post_images'));
        $filePath = rtrim($fileDir, '/') . '/' . $cleanName;

        if (is_file($filePath)) {
            unlink($filePath);
        }

        $this->entityManager->remove($imageEntity);
        $this->entityManager->flush();
    }
}

3. Delete endpoint

public function deleteImage(string $filename): JsonResponse
{
    $this->uploaderService->deleteBlogPostImage($filename);

    return new JsonResponse([
        'success' => true,
        'message' => "L'image a été supprimée avec succès.",
    ]);
}

4. React Integration

export const blogPostImgUrl = `${apiUrl}/uploads/post`;
const handleDeleteImage = async (src: string) => {
  const filename = src.split("/").pop();
  if (filename)
    await axios.delete(`${apiUrl}/post/delete/${filename}`);
};

📘 API Summary

| Feature | Supported | |-------------------|-----------| | Image upload | ✅ | | Image delete sync | ✅ | | TypeScript ready | ✅ | | Config builder | ✅ |


📝 License

MIT — free for commercial and private use.