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

eiu-tiptap-editor

v1.0.6

Published

A modern, customizable rich-text editor for Angular 15+, built with Tiptap and featuring complete internationalization support

Readme

EIU Tiptap Editor

[!IMPORTANT] ^v3.0.0 uses Tiptap v3. Designed seamlessly for Angular 15+ environments.

A robust, enterprise-grade, highly customizable Angular rich-text editor built on top of Tiptap. Designed specifically to replace traditional heavy editors like DevExtreme HTML Editor, delivering a blazing fast, modern editing experience.

NPM Version Repository

High-performance Angular WYSIWYG editor. It features a polished, professional UI out of the box with a fully-featured toolbar, comprehensive table power controls, formatting options, color pickers, and more.


✨ Key Features

  • 🚀 Drop-in Ready: Fully encapsulated toolbar with an intuitive, DevExtreme-like interface out-of-the-box.
  • Signal-Ready Architecture: High performance and reactive change detection.
  • 📊 Advanced Table Power: Comprehensive cell selection, splitting, merging, and dynamic table operations built natively into the UI.
  • 🎨 Full Formatting Suite: Highlighting, text color, typography controls, alignment, superscript, and subscript support.
  • 📎 Office Paste: Clean, seamless pasting from Microsoft Word and Excel.
  • 🔗 Built-in NgModel and FormControl: Seamless integration with Angular Template-Driven and Reactive Forms using ControlValueAccessor.
  • 🌍 Internationalization (i18n): Ready for localization and multiple languages.

📦 Installation

To install the library into your project, simply run:

npm install eiu-tiptap-editor

Note: As of version 1.0.x, all required Tiptap peer dependencies are bundled securely into the library's dependencies. NPM will automatically fetch them for you.

Add Styles

Make sure to add the required material symbols and library styles to your angular.json under the styles array:

{
  "styles": [
    ...
    "node_modules/@fontsource/material-symbols-outlined/index.css",
    "node_modules/eiu-tiptap-editor/styles/index.css",
    ...
  ]
}

🚀 Quick Start

1. Module Setup

If your project uses NgModules (e.g. AppModule), import the component directly (or via a Shared Module):

import { TiptapEditorComponent } from 'eiu-tiptap-editor';

@NgModule({
  imports: [
    // other imports...
    TiptapEditorComponent
  ],
})
export class AppModule { }

2. Standalone Component Usage

If you're using Standalone components, just import it directly into your component:

import { Component } from "@angular/core";
import { FormsModule } from "@angular/forms";
import { TiptapEditorComponent } from "eiu-tiptap-editor";

@Component({
  selector: "app-example",
  standalone: true,
  imports: [FormsModule, TiptapEditorComponent],
  template: `
    <lib-tiptap-editor 
      [(ngModel)]="htmlContent" 
      [height]="'400px'"
      placeholder="Start typing your awesome content...">
    </lib-tiptap-editor>
  `,
})
export class ExampleComponent {
  htmlContent = "<h2>Hello World!</h2><p>This is the EIU Tiptap Editor.</p>";
}

3. Reactive Forms Integration

Works perfectly with Angular's Reactive Forms out of the box:

import { Component } from "@angular/core";
import { FormControl, ReactiveFormsModule } from "@angular/forms";
import { TiptapEditorComponent } from "eiu-tiptap-editor";

@Component({
  standalone: true,
  imports: [TiptapEditorComponent, ReactiveFormsModule],
  template: `
    <lib-tiptap-editor [formControl]="contentControl"></lib-tiptap-editor>
  `,
})
export class FormComponent {
  contentControl = new FormControl("<p>Initial content</p>");
}

⚙️ Configuration Properties

The <lib-tiptap-editor> component accepts the following inputs to customize its behavior:

| Input | Type | Default | Description | | :--- | :--- | :--- | :--- | | [placeholder] | string | Type '/' for commands | Text shown when the editor is empty. | | [height] | string | 100% | CSS height for the editor container. | | [editable] | boolean | true | Set to false to make the editor read-only. |

See the API.md for a deeper dive into advanced configurations.

🔧 Local Development

If you want to clone this repository and modify the library yourself:

# 1. Install dependencies
npm install

# 2. Build the library
npx ng build eiu-tiptap-editor

# 3. Serve the demo application
npm start

🙏 Acknowledgements

This project was originally forked and heavily inspired by the excellent work from FloGeez/angular-tiptap-editor. We have since heavily extended it with a native toolbar UI, advanced table tools, and form accessors tailored for our enterprise needs.

📝 License

MIT License - see LICENSE file for details.