Log in or register to post comments
Last post
440kb+ for CKEditor 4. Am I missing something?
Hey, just got CKEditor 4 beta and I noticed that just the ckeditor.js file alone is 440kb minified... am I using some version with EVERYTHING included?

My entire website has about 330kb of JS minified and I can't justify doubling that for one box where users can highlight a part of text and make it bold.

So am I missing something or is there a very lightweight just standalone BBCode version or something? 440kb is INSANE
Re: 440kb+ for CKEditor 4. Am I missing something?
I did use the search feature but didn't find anything. Found this thread via Google.
viewtopic.php?t=26916

I understand that CKEditor is supposedly feature rich but when I see another basic editor of 40kb. All I want is my users to highlight text, make it bold, italic, underlined and add lists etc.

The only place I can imagine using this is for CMS inline editing where I don't care how long it takes an admin to download 400kb. I know it gets gzipped to about 130kb but then it's got to process it etc also :P
Re: 440kb+ for CKEditor 4. Am I missing something?
Did you get CKEditor 4 Development Edition from its Github Repository ? The ckeditor.js file is just 4kb.

The repository also has samples which you may use for further reference.
Re: 440kb+ for CKEditor 4. Am I missing something?
That all looks cool but it seems everything is still heavily tied together. Attempted to remove plugins for just a box and bbcode buttons at the top and I think I'm still looking at about 300kb just for a bar with buttons that wraps [bbcode] around things.

Definitely not for me...
Re: 440kb+ for CKEditor 4. Am I missing something?
perhaps you should try markitup jquery plugin :) https://github.com/markitup/1.x
Re: 440kb+ for CKEditor 4. Am I missing something?
You shouldn't look at any editor's size. You should look at how an app is designed for gzip compression, which most servers use nowadays. CKEditor is around 90 KB on servers with gzip enabled: https://developers.google.com/speed/articles/gzip
Re: 440kb+ for CKEditor 4. Am I missing something?
Sebstefanov wrote:You shouldn't look at any editor's size. You should look at how an app is designed for gzip compression, which most servers use nowadays. CKEditor is around 90 KB on servers with gzip enabled: https://developers.google.com/speed/articles/gzip


Didn't know that... That is cool :)