Javascript resources for the console, such as web applications?

Suppose I want to implement a curses / console program similar to a program in HTML / CSS / Javascript. Examples are an online adventure game or a simple interpreter similar to the β€œTry to use the XYZ programming language now” pages for languages ​​such as Ruby or Haskell. Is there a library / plugin / etc that implements these terminal interfaces?

Note:

After a long search, I found jquery-console , which at first glance looks very promising.

Any other alternatives or recommendations?

+7
source share
1 answer

I used the termlib.js library for several projects and it works great. This helps with a lot of things, such as keyboard processing and input parsing.

It should also be less bloated than any jQuery-based solution if you are not going to use jQuery anyway.

You might want to start a readme search or try samples .

+8
source

All Articles