themirror
themirror

Reputation: 10287

Browser based IDE with code navigation

Do you know of any IDE, text editor, code editor, whathaveyou, where I can see an example of how to write code navigation functions?

A code navigation function could be for example, providing a visual list of methods or a document tree of the current file so that I can click on an entry to jump to that place in the file.

Note: obviously answers need to be about open source projects so that one can read the code.

Upvotes: 0

Views: 392

Answers (1)

Ionică Bizău
Ionică Bizău

Reputation: 113335

I strongly recommend you to take a look at Codiac project.

Codiad is a web-based IDE framework with a small footprint and minimal requirements. The system is still early in development, and while it has been proven extremely stable please be sure have a backup system if you use it in any production work.

It has nice graphics and it is still in developement.

Here you can test it.


Another popular IDE is Cloud9.

Cloud9 IDE is an online development environment for Javascript and Node.js applications as well as HTML, CSS, PHP, Java, Ruby and 23 other languages.

Here is its Github repo.

Upvotes: 1

Related Questions