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 🙏

© 2024 – Pkg Stats / Ryan Hefner

hugerte

v1.0.3

Published

Web based JavaScript HTML WYSIWYG editor control.

Downloads

180

Readme

HugeRTE

The 100% free fork of the world's #1 open source rich text editor.

Used and trusted by millions of developers, TinyMCE (the original project we've forked) is the world’s most customizable, scalable, and flexible rich text editor. However, they changed the license of TinyMCE 7 to GPLv2+ (or a commercial license) while it has been MIT for TinyMCE 6 and LGPL for older versions. This creates problems for users (see the discussion) so a fork has been created here. It has originally been named HugeMCE, however, due to potential trademark confusion with TinyMCE, it has been renamed to HugeRTE before its publishment to npm.

Get started with HugeRTE

The simplest way to get started with HugeRTE is using a CDN:

<script src="https://cdn.jsdelivr.net/npm/[email protected]/hugerte.min.js">

Or install it manually via npm:

npm i hugerte

We're soon going to host the docs for HugeRTE on our website; for now, please refer to the TinyMCE docs, but replace tinymce by hugerte in all code snippets.

See this guide also, but replace tinymce@^6 by hugerte@^1 (and of course, all occurrences of tinymce by hugerte).

HugeRTE provides a range of configuration options that allow you to integrate it into your application. Start customizing with a basic setup.

Configure it for one of three modes of editing:

Migrate from TinyMCE

If you have been using TinyMCE before, you have to brute-force replace tinymce by hugerte in your code. In your package.json, make sure you use 1.0.2 as hugerte version – not the one you used for tinymce before. HugeRTE is based on TinyMCE 6.8.4, but it is even later because it contains some code from TinyMCE 7 (all until the commit which changed the license). See the Changelog for details.

Features

Integration

[!WARNING] We have not yet forked these integrations so they're still about TinyMCE.

TinyMCE is easily integrated into your projects with the help of components such as:

With over 29 integrations, and 400+ APIs, see the TinyMCE docs for a full list of editor integrations.

Customization

It is easy to configure the UI of your rich text editor to match the design of your site, product or application. Due to its flexibility, you can configure the editor with as much or as little functionality as you like, depending on your requirements.

With 30 powerful plugins available, and content editable as the basis of HugeRTE, adding additional functionality is as simple as including a single line of code.

Realizing the full power of most plugins requires only a few lines more.

Extensibility

Sometimes your editor requirements can be quite unique, and you need the freedom and flexibility to innovate. Thanks to HugeRTE being open source, you can view the source code and develop your own extensions for custom functionality to meet your own requirements.

The HugeRTE API is exposed to make it easier for you to write custom functionality that fits within the existing framework of HugeRTE UI components. Just don't forget to replace every instance of the tinymce object in the TinyMCE docs by hugerte.

Compiling and contributing

In 2019 TinyMCE made the decision to transition their codebase to a monorepo. For information on compiling and contributing, see: contribution guidelines.

As an open source product, we encourage and support the active development of our software.

Want more information?

Visit the HugeRTE website and check out the TinyMCE documentation until we host the docs ourselves.