Free & Open Source — MIT License

The All-in-One Rich Text Editor
You've Been Waiting For

All the premium features other editors charge hundreds for — completely free. Track changes, comments, tables, emoji, slash commands, Word import/export, media embeds, and more.

No registration. No license key. No credit card.

CDN
<script src="https://cdn.jsdelivr.net/npm/@zesyn/zeditor/dist/zeditor.iife.js"></script> 📋
NPM
npm install @zesyn/zeditor 📋

Try Zeditor Right Now

A full-featured editor running entirely in your browser. No server needed.

Every Premium Feature. Zero Cost.

All premium editor features — completely free forever.

📝

Rich Text Formatting

Bold, italic, underline, strikethrough, superscript, subscript, font family, size, and color.

🔄

Track Changes Premium

Accept or reject edits like Microsoft Word. See exactly what changed and by whom.

💬

Inline Comments Premium

Add threaded comments to any selected text. Resolve or delete with one click.

Slash Commands Premium

Type / to instantly insert headings, tables, images, code blocks, and more.

📊

Advanced Tables Premium

Insert tables with a visual picker. Add/remove rows and columns via right-click menu.

🔍

Find & Replace Premium

Full find & replace with case-sensitive search, match highlighting, and replace-all.

😊

Emoji Picker Premium

600+ emoji across 10 categories with search. Insert with a single click.

▶️

Media Embed Premium

Embed YouTube, Vimeo, and any iframe URL with a live preview before inserting.

📄

Word Import/Export Premium

Import .docx files and export your content as Word documents. All client-side.

🌙

Dark Mode

Full dark mode support with a toggle button. Looks great in any theme.

🔗

PowerPaste

Clean paste from Word and Google Docs. Strips unwanted styles automatically.

📊

Word Count & Stats Premium

Real-time word count, character count, reading time, sentences, and paragraphs.

🖼️

Image Upload

Upload images directly or embed from URL. Set custom width, height, and alt text.

💻

HTML Source View

Switch to raw HTML mode to edit markup directly. Syncs back on toggle.

Fullscreen Mode

Distraction-free fullscreen editing that takes over the entire screen.

📱

Mobile Responsive

Works great on phones and tablets. Touch-friendly toolbar and interface.

How Zeditor Compares

Premium features that cost hundreds per month — now completely free.

Feature ⚡ Zeditor Other Editors
Basic Formatting✓ Free✓ Free
Tables✓ Free
Track Changes✓ Free
Inline Comments✓ Free
Find & Replace✓ Free
Word Import/Export✓ Free
Math Equations✓ Free
Emoji Picker✓ Free
Slash Commands✓ Free
Media Embed✓ Free
Word Count✓ Free
CDN Install
LicenseMIT (Free Forever)Paid tiers
Monthly Cost$0

* Local revision tracking; cloud sync requires a backend

Get Started in Seconds

Choose your preferred installation method.

<!-- Step 1: Add to <head> --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@zesyn/zeditor/dist/zeditor.css"> <!-- Step 2: Add before </body> --> <script src="https://cdn.jsdelivr.net/npm/@zesyn/zeditor/dist/zeditor.iife.js"></script> <!-- Step 3: Add to your HTML --> <div id="editor"></div> <!-- Step 4: Initialize --> <script> const editor = new Zeditor('#editor', { height: 450, placeholder: 'Start writing...', onChange: (html) => { console.log(html); } }); </script>
# Install via NPM npm install @zesyn/zeditor

// Import in your JavaScript/TypeScript file import { Zeditor } from '@zesyn/zeditor'; import '@zesyn/zeditor/dist/zeditor.css'; const editor = new Zeditor('#editor', { height: 450, placeholder: 'Start writing...', onChange: (html) => { console.log(html); } });

Download the ZIP, extract it, and host the files on your server (including Hostinger shared hosting).

<!-- After extracting the ZIP, include these files --> <link rel="stylesheet" href="/zeditor/zeditor.css"> <script src="/zeditor/zeditor.js"></script> <div id="editor"></div> <script> const editor = new Zeditor('#editor', { height: 450 }); </script>

⬇ Download Zeditor v1.0.4