Is TinyMCE free to use?
Asked Answered
H

4

31

I'm not sure I understand it correctly, but I believe that there is a "basic" version that is free of charge, you only have to pay if you want some premium plugins and technical support.

Is this how the situation truly is?

Heisler answered 9/9, 2017 at 16:32 Comment(0)
S
33

yes.

Please see this link and this link for more information.

Anyone that wants to use TinyMCE in their commercial application or website are free to do so.

On top of this,the code is licensed under LGPL, so you may fork the code. Just remember to contribute your changes where other people can see it.(fork on github for example)

If you want support or want to contribute to the development, you are welcome to buy support or get addition plugins with the enterprise version. But only if you want.

Related.

EDIT: If you use a tool like Webpack, remember that the TinyMCE files should not be bundled and minified with the rest of your application. It should be a seperate Java Script and resource files. TinyMCE even has it's own CDN to help you with this.

"It should also be possible to exchange that dynamically linked library for an independently compiled build"

Slipon answered 9/9, 2017 at 16:42 Comment(4)
I am confused. as I want to use it in an enterprise application and found this link. Not sure if its really free now? community.tiny.cloud/communityQuestion?id=9066100000096nGAAQMassif
from the first link " LGPL software is focused on libraries. And anything that uses LGPL libraries may or may not be commercial as long as the license of the library is not changed and the whole application with source is distributed with the product." So, the way I understand it, as long as you don't change the library, it's freeSlipon
Thank you so much for explanation. I got it.Massif
Thank you for this explanation. I think TinyMCE and CKEdit go out of their way to make it ambiguous as to whether they are free/open source or not. Maybe that's their business plan. Or maybe I'm just not good at reading licenses.Interrelation
P
4

As of April 2024, no. Load it more than 1000 times in a month and it's locked. You need to pay at least $40 a month from then on. https://www.tiny.cloud/pricing/

Priority answered 16/4 at 0:1 Comment(1)
This answer relates to the Cloud version only. Self-hosted is still free. v7 has some unwelcome licencing implications but v6 is genuinely free.Calcaneus
R
1

I am installing it from this address by typing "npm install tinymce" as of 2021-01-03, according to the information I received from the site, it is open source and free.

https://www.npmjs.com/package/tinymce

TinyMCE is the world’s most popular open source web-based WYSIWYG editor.

Trusted and loved by millions of developers, and integrated into thousands of applications, such as:

Content management systems (CMSs) Learning management systems (LMSs) Customer relationship management (CRM) and marketing automation systems Email marketing systems Content creation in SaaS systems

The confusing "https://www.tiny.cloud/pricing" written on the tinymce page but according to the paragraph COMMUNITY it is free forever.

Free Forever The open source editor you know and love, free forever and ready for commercial use.

Rainer answered 3/1, 2021 at 10:32 Comment(3)
There are some plugins labeled as premium and are not free now.Boil
The features in core are free. : tiny.cloud/tinymce/features Fee information : tiny.cloud/pricing The table feature, which was free before, seems to have been paid. It appears under "Premium features". tiny.cloud/tinymce/features/advanced-tables/…Rainer
1000 monthly loads are freeTemplia
U
-1

use this bellow init to have menu bar and toolbar for free without any problem

 tinymce.init({
  selector: 'textarea',
  min_height: 350,
   skin: "oxide",
   icons: 'material' ,
 preview_styles: 'font-size color',
  resize: 'both',
  plugins: 'link image media code autolink lists media table',
  toolbar: 'undo redo | styleselect| forecolor  | bold italic | alignleft aligncenter alignright alignjustify | outdent indent | link image media| code table',
  toolbar_mode: 'floating',
   /* enable title field in the Image dialog*/
  image_title: true,
  /* enable automatic uploads of images represented by blob or data URIs*/automatic_uploads: true,images_upload_url: 'postAcceptor.php',file_picker_types: 'image',

  tinycomments_mode: 'embedded',
  tinycomments_author: 'Author name'
  
});
Unashamed answered 18/8, 2020 at 17:21 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.