Google Closure Editor/WYSIWYG

后端 未结 3 952
萌比男神i
萌比男神i 2021-02-04 08:40

Does anyone have experience with Google Closure Editor/WYSIWYG? I\'m thinking of moving from CKEDITOR to Google Closure Editor/WYSIWYG. Ideally I\'d love to use the etherpad edi

相关标签:
3条回答
  • 2021-02-04 09:26

    It might not last, but there is a standalone version of kix up on github: https://github.com/benjamn/kix-standalone

    0 讨论(0)
  • 2021-02-04 09:37

    The Google Closure editor is a wrapper around the built-in browser editing capabilities. It is thus similar to other rich text editors like TinyMCE, CKEditor, etc. It is less feature-rich than either of those, but it's smaller and faster. The base editor is used by Gmail (most notably) and various other Google properties.

    There is nothing within the public Google Closure editor to enable Google Docs style real-time collaboration. With that said, it has a plugin model which enables you to add new functionality. I would not recommend taking something like this on without a solid understanding of working with Google Closure.

    Until recently, the editor was also used by Google Docs. However, the limitations of core browser editing technology became a barrier to innovation, so they built their own editing surface[1,2] (codenamed Kix). This editing surface is not included in Closure Library.

    1. https://drive.googleblog.com/2010/04/a-rebuilt-more-real-time-google.html
    2. https://drive.googleblog.com/2010/05/whats-different-about-new-google-docs.html
    0 讨论(0)
  • 2021-02-04 09:42

    EtherPad Lite is the most viable option I've seen so far:

    https://github.com/ether/etherpad-lite

    Personally I favor this one, because:

    1. It's open source
    2. You can host your own
    3. Has few server-side dependencies (Node.js)
    4. It has an API, so you can build your app in any language

    Attempting to steal Google's work is probably not a good long-term plan. (I'm also not convinced that having the client-side libraries actually helps you, in terms of the real-time collaboration feature, which depends heavily on the server-side.)

    0 讨论(0)
提交回复
热议问题