TinyMCE 可以免费使用吗?

Is TinyMCE free to use?

我不确定我是否理解正确,但我相信有一个 "basic" 版本是免费的,只有在需要一些高级插件和技术支持时才需要付费。

情况真的是这样吗?

.

请参阅this link and this link了解更多信息。

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

最重要的是,该代码已根据 LGPL 获得许可,因此您可以分叉该代码。请记住在其他人可以看到的地方贡献您的更改。(例如 github 上的分支)

如果您需要支持或想为开发做出贡献,欢迎您购买支持或获得addition plugins with the enterprise version。但前提是你愿意。

Related.

编辑: 如果您使用像 Webpack 这样的工具,请记住 TinyMCE 文件不应与您的应用程序的其余部分捆绑在一起并缩小。它应该是一个单独的 Java 脚本和资源文件。 TinyMCE 甚至拥有自己的 CDN 来帮助您。

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

使用这个 bellow init 可以免费获得菜单栏和工具栏,没有任何问题

 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'
  
});

我从 2021 年 1 月 3 日开始通过输入“npm install tinymce”从这个地址安装它,根据我从该站点收到的信息,它是开源和免费的。

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

tinymce 页面上写着令人困惑的“https://www.tiny.cloud/pricing”,但根据 COMMUNITY 段落,它是永久免费的。

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