Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is a good javascript editor for editing custom DSL code?

Tags:

javascript

I'm looking for a nice / customisable editor to put on a web page for editing scripts for a custom DSL. Ideally with syntax highlighting (and intellisense would be great! )

Anyone know of anything suitable?

like image 602
Keith Nicholas Avatar asked Jan 25 '10 20:01

Keith Nicholas


People also ask

What editor should I use for JavaScript?

Visual Studio Code. Visual Studio Code is a streamlined code editor by Microsoft, which supports development operations like debugging, version control, and task running. It is one of the most popular and reliable code editors for JavaScript.

Is Atom good for JavaScript?

The quick answer is yes. Atom has features such as auto-completion, fuzzy finder, and many others make writing code an easy job. These efficiency features are combined with the extensibility of the Atom.io platform make Atom a really compelling code editor option for JavaScript.

What is the best environment for JavaScript?

#1. Visual Studio. It is one of the best integrated development environments for JavaScript with many useful features.

Is Brackets good for JavaScript?

Brackets is a great (basic) code editor I use Brackets for basic code editing in HTML, CSS, JavaScript (and jQuery), and PHP & MySQL. It is not the most advanced editor but is my …


2 Answers

For syntax highlighting, look at EditArea. Intellisense could be written as a plugin.

like image 96
Shanti Avatar answered Oct 29 '22 12:10

Shanti


maybe you should have a look at codemirror:

http://codemirror.net/

it's "just" an editor-component and you will probably have to put some work into it. but it's easy to enhance and integrate it.

like image 44
aurora Avatar answered Oct 29 '22 12:10

aurora