Sunday, 8 September 2013

Languages/Technologies for creating an online IDE

Languages/Technologies for creating an online IDE

I would like to create an online IDE for a simple logical programming
language. Its interpreter consists of two parts, one is written purely on
JAVA and another one in C++.
I have binaries for both parts. I would like to have a simple online
editor for the language (possibly, with syntax highlighting which is not
difficult to obtain having BNF grammar of the language) and the
possibility to run the code on my server side and display the results.
The language does not allow any system calls and it is impossible to write
a program which will crash the system (however, some uncaught run-time
exceptions from java are possible)
Which languages/technologies/libraries can be used for this?
I have no experience in web development, but I used C++/Java/Python for
some projects involving a lot of parsing and calculations. I also have
read a book about JavaScript many years ago.

No comments:

Post a Comment