up vote 11 down vote favorite
17
share [g+] share [fb]

I need to let user to edit some code in my web-app. I want to highlight the syntax as he types.

Note: I need code to be highlighted on the fly, right inside editor control. I do not need offline source highlighters.

Is there some free JavaScript-based code editor which does the job?

I'll need to highlight Lua syntax, but I can add it myself, if editor API is adequate.

link|improve this question

feedback

9 Answers

up vote 9 down vote accepted

This one is quite good Edit Area

link|improve this answer
The URL is cdolivet.com/index.php?page=editArea – altCognito Apr 2 '09 at 12:29
I just downloaded EditArea and integrated it with my existing webpages. No problems. I tested on Firefox 3.0, IE8, and Chrome. – Corey Trager Jul 4 '09 at 1:44
(The coding language I'm having it parse is SQL) – Corey Trager Jul 4 '09 at 1:47
feedback

I just came across CodeMirror, which is apparently also in use by Google in their AJAX APIs playground, which serves as a good demo.

This one enriches a textarea (using an iframe v2 no longer uses an iframe) and is therefore editable, unlike Prettify and SyntaxHighlighter, which merely give syntax highlighting to a non-editable element. It also works in WebKit, which EditArea didn't when I tested it.

Update: many, many languages now supported. One downside, however: looks like the inbuilt language support is limited to clientside web development stuff, like Javascript, XHTML, CSS, etc, and not many server-side languages (correct me if I'm wrong).

link|improve this answer
It supports PHP and Ruby as far as I know. – Christian Sciberras Oct 30 '10 at 7:40
+1 for CodeMirror. It syntax highlights my html as I type. :) – Web_Designer Mar 16 '11 at 0:38
+1 for CodeMirror too, it's faster, it's cleaner. – Lourenzo Ferreira Dec 2 '11 at 19:56
feedback

You have a list of javascript source code editors on wikipedia:

http://en.wikipedia.org/wiki/Comparison_of_JavaScript-based_source_code_editors

link|improve this answer
feedback

http://ace.ajax.org all the way!

link|improve this answer
ACE has some really weird contribution requirements. To have your pull request accepted, you need to sign and fax/scan them a contract with some legal disclaimer (as if releasing your contributions under an OSS license wasn't enough). This doesn't make it a real "open-source project" in my book, so personally I'm going to avoid it. – CyberShadow Dec 24 '11 at 6:43
feedback

Gotta go with Bespin by Mozilla. It's built using HTML5 features (so it's quick and fast, but doesn't support legacy browsers though), but definitely amazing to use and beats everything I've come across - probably beacause it's Mozilla backing it, and they develop Firefox so yeah... There's also a jQuery Plugin which contains a extension for it to make it a bit easier to use with jQuery.

link|improve this answer
feedback

I've seen this one being used a lot lately (no LUA support though):

http://code.google.com/p/syntaxhighlighter/

link|improve this answer
feedback

Prettify works on several different languages.

link|improve this answer
It highlights existing code but it doesn't allow code editing. – Maxim Mazin Dec 14 '11 at 15:57
feedback

I saw on Scott Hanselman's blog that he recommends SyntaxHighlighter. The code samples on his site look very nice. But one of the comments says the script has bugs with scrolling. I've also heard good things about prettify, but it may have bugs with formatting VBScript code.

link|improve this answer
feedback

I like codemirror. I use it on indieed.com/kidcodi

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.