JavaScript library to implement command line in browser

browser, command-line-interface, javascript

Solution

Have a look at Josh.js for a bash-like environment in the browser:

- http://sdether.github.com/josh.js/

Problem

I would like to allow powerusers to perform certain actions on the site in a command-line like interface (think Quake console that slides in from above ;-). Is there a library that already implements the basics of what I need in the browser? Tasks like getting the input from the user, command history etc. Me and my colleagues will have limited time to implement this during a hackathon, so we want to have as much time as possible to implement the actual commands interfacing with our app.

Original source