Tetrons

Powerful Rich Text Editor

Products

Explore Our Innovative Tools

Designed to streamline recruitment and empower HR teams with AI-driven solutions.

Tetrons

Tetrons

Tetrons is a rich text editor designed to provide users with an intuitive and powerful editing experience. It supports various content creation, including text formatting, rich media embedding, and more.

The editor is perfect for a wide range of use cases, from content management to email composition and beyond. It seamlessly integrates into websites or applications, enhancing user interactions.

Last week 657,169 developers chose Tetrons for their web app

Fully Responsive

Optimized for all devices, ensuring a seamless experience whether on desktop, tablet, or mobile.

Lightning Fast

Built for speed with minimal load times, providing users with instant access and a smooth interface.

Light Weight

Minimal dependencies and clean code structure make it efficient and easy to maintain.

Retina Ready

High-resolution support ensures crystal-clear visuals on all modern displays.

Google Fonts

Easily integrate a wide variety of fonts from Google Fonts to match your brandโ€™s voice.

Easy To Edit

Modular and well-documented code makes customization effortless, even for beginners.

Pricing

Flexible plans that grow with your business

Start for free and upgrade when you're ready. Each plan is tailored to fit your needs, whether you're just getting started or scaling up.

Features
FREE
Pro
Premium
Platinum
Basic Text Editing
Bold, Italic, Underline Support
Bullet & Numbered Lists
Limited Export Options (Text Only)
Basic Theme Support
All Free Features
Table Insertion & Editing
Media Embeds (Images, Videos)
Code Block Support
Auto Save & Undo/Redo History
Keyboard Shortcuts
All Pro Features
Real-time Collaborative Editing
Commenting & Suggestions
Custom Theme Builder
Document Versioning
Markdown Mode & Preview
All Premium Features
Plugin Support & API Access
AI-Powered Writing Assistant
Export to PDF, DOCX, HTML
Custom Toolbar & Shortcuts
Role-based Access Control

Quick Start

Begin integrating with just a few simple steps

Get up and running in no time. Our easy-to-follow guides and flexible setup make it simple to integrate and start using the platform right away.

Integration Guide

import { useEffect, useState } from "react";
import { initializeTetrons, isApiKeyValid, EditorContent } from "tetrons";
import "tetrons/style.css";

function App() {
  const apiKey = "YOUR_API_KEY";

  const [loading, setLoading] = useState(true);
  const [isValid, setIsValid] = useState(false);
  const [error, setError] = useState("");

  useEffect(() => {
    async function validate() {
      try {
        await initializeTetrons(apiKey);
        setIsValid(isApiKeyValid());
      } catch (err) {
        setError(err.message);
      } finally {
        setLoading(false);
      }
    }

    validate();
  }, [apiKey]);

  if (loading) {
    return <div>๐Ÿ” Validating API key...</div>;
  }

  if (!isValid) {
    return <div style={{ color: "red" }}>โŒ API Key Invalid: {error}</div>;
  }

  return (
    <div style={{ padding: "2rem" }}>
      <h1>Editor from Tetrons Package</h1>
      <EditorContent apiKey={apiKey} />
    </div>
  );
}

export default App;

Follow the steps above to get started with integrating the editor into your application.

300M+

Downloads every single year

110M+

Products powered by Fin-Editor

45M+

Hits on our CDN per day

25000+

Commits on GitHub

125+

Contributors on GitHub