• This repository has been archived on 28/Nov/2018
  • Stars
    star
    668
  • Rank 65,259 (Top 2 %)
  • Language
    JavaScript
  • License
    BSD 2-Clause "Sim...
  • Created about 14 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A simple JQuery console emulator

jquery-console

A terminal emulator for making command consoles written in JavaScript with jQuery.

See LICENSE for the license.

Example

For a list of examples, see the demo file, and for a live demo, see live demo on my home page.

Simple example:

var container = $('<div class="console">');
$('body').append(container);
var controller = container.console({
  promptLabel: 'Demo> ',
  commandValidate:function(line){
    if (line == "") return false;
    else return true;
  },
  commandHandle:function(line){
      return [{msg:"=> [12,42]",
               className:"jquery-console-message-value"},
              {msg:":: [a]",
               className:"jquery-console-message-type"}]
  },
  autofocus:true,
  animateScroll:true,
  promptHistory:true,
  charInsertTrigger:function(keycode,line){
     // Let you type until you press a-z
     // Never allow zero.
     return !line.match(/[a-z]+/) && keycode != '0'.charCodeAt(0);
  }
});

Some CSS for your console:

div.console { font-size: 14px }
div.console div.jquery-console-inner
 { width:900px; height:200px; background:#333; padding:0.5em;
   overflow:auto }
div.console div.jquery-console-prompt-box
 { color:#fff; font-family:monospace; }
div.console div.jquery-console-focus span.jquery-console-cursor
 { background:#fefefe; color:#333; font-weight:bold }
div.console div.jquery-console-message-error
 { color:#ef0505; font-family:sans-serif; font-weight:bold;
   padding:0.1em; }
div.console div.jquery-console-message-value
 { color:#1ad027; font-family:monospace;
   padding:0.1em; }
div.console div.jquery-console-message-type
 { color:#52666f; font-family:monospace;
   padding:0.1em; }
div.console span.jquery-console-prompt-label { font-weight:bold }

Usage options

Here are options which can be passed to console:

Option Type Description
autofocus bool Autofocus the terminal, rather than having to click on it.
promptHistory bool Provide history support (kind of crappy, needs doing properly.)
historyPreserveColumn bool Preserve the column you were one when switching between history.
welcomeMessage string Just a first message to display on the terminal.
promptLabel string Prompt string like 'JavaScript> '.
cols integer The number of cols, this value is only used by the command completion to format the list of results.
commandValidate function When user hits return, validate whether to trigger commandHandle and re-prompt.
commandHandle function Handle the command line, return a string, boolean, or list of {msg:"foo",className:"my-css-class"}. commandHandle(line,report) is called. Report function is for you to report a result of the command asynchronously.
completeHandle function Handle the command completion when the tab key is pressed. It returns a list of string completion suffixes.
completeIssuer function Handle the command completion when the tab key is pressed. It differs from 'completeHandle'. 'completeIssuer' will just trigger the calculation for completion, and the result is returned asynchronously, after which the controller's 'showCompletion(promptText, completions)' can be invoked with the result. 'completeHandle' will retrieve the result synchronously, and show the result. If 'completeHandle' exists, 'completeIssuer' is ignored. A typical usage of 'completeIssuer' is that the completion is retrieved from the server using ajax or WebSocket asynchronously.
animateScroll bool Whether to animate the scroll to top. Currently disabled.
charInsertTrigger function Predicate for whether to allow character insertion. charInsertTrigger(char,line) is called.
cancelHandle function Handle a user-signaled interrupt.
fadeOnReset bool Whether to trigger a fade in/out when the console is reset. Defaults to true.

Uses in the wild

More Repositories

1

elisp-guide

A quick guide to Emacs Lisp programming
1,397
star
2

intero

Haskell
1,021
star
3

hell

Haskell-based shell scripting language
Haskell
506
star
4

jl

Functional sed for JSON
Haskell
473
star
5

vado

A demo web browser engine written in Haskell
Haskell
281
star
6

z

A strict, impure, curried, partially applied programming language with rather peculiar syntax.
Haskell
277
star
7

lucid

Clear to write, read and edit DSL for writing HTML
Haskell
274
star
8

duet

A tiny language, a subset of Haskell aimed at aiding teachers teach Haskell
Haskell
201
star
9

dynamic

Dynamic typing in Haskell
Haskell
193
star
10

tryhaskell

Try Haskell
Haskell
187
star
11

hulk

Haskell IRC daemon.
Haskell
142
star
12

emacs-config

My Emacs config
Emacs Lisp
115
star
13

haskell-style-guide

95
star
14

ircbrowse

An IRC analysis server.
Haskell
80
star
15

purify

Reproducible builds for PureScript
Haskell
73
star
16

labels

Declare and access tuple fields with labels
Haskell
61
star
17

descriptive

Self-describing consumers/parsers
Haskell
41
star
18

ghci-reload-demo

A demo of using GHCi as a persistent development environment
Haskell
41
star
19

chrisdone-xmonad

My xmonad configuration.
Haskell
33
star
20

freenect

Haskell interface to Kinect.
Haskell
26
star
21

bdo

Do things in the browser from Emacs, namely update the stylesheet (but maybe more later)
Haskell
26
star
22

ats-examples

Examples from Introduction to Programming in ATS
ATS
25
star
23

present

Make presentations for data types
Haskell
25
star
24

audit

Code auditing mode for Emacs
Emacs Lisp
25
star
25

webshow

Show programming language printed values in a web UI
Haskell
22
star
26

sdl2-sprite

Create and animate sprites easily with sdl2 (Haskell)
Haskell
22
star
27

prana

Interpreter for GHC Haskell
Haskell
22
star
28

flycheck-stack

A flycheck checker that uses stack ghci
Emacs Lisp
22
star
29

ini

Quick and easy INI configuration files for Haskell
Haskell
22
star
30

zenburn

Fork of Zenburn theme for emacs
Emacs Lisp
20
star
31

inflex

Pure, statically typed, content-addressable, programming language for spreadsheet use
Haskell
20
star
32

ghc-server

A server interface to GHC.
Haskell
20
star
33

advent-2017-maze-rust-haskell

Haskell
17
star
34

google-closure-purescript

Dockerfile
16
star
35

streaming-parsers

Streaming parsers collection
Haskell
15
star
36

ace

Attempto Controlled English parser and printer
Haskell
15
star
37

scrobble

Scrobbling server. A library providing server-side and client-side support for the Audioscrobbler Realtime Submission protocol: http://www.audioscrobbler.net/development/protocol/
Haskell
15
star
38

flo

Generate flow charts from your code base.
Haskell
14
star
39

conditions

Conditions for Haskell
Haskell
14
star
40

pgsql-simple

A mid-level client library for the PostgreSQL database, intended to be fast and easy to use.
Haskell
13
star
41

sandbox

Small random demonstrations of code
Haskell
12
star
42

duta

Haskell
12
star
43

pure-io

Pure IO monad.
Haskell
11
star
44

caseof

A simple way to query constructors, like cases but slightly more concise
Haskell
11
star
45

css

Monadic Haskell DSL for CSS.
Haskell
10
star
46

rocksdb-haskell-ng

Haskell
9
star
47

snappy

A reactive library for using SVG in the browser for Haskell
Haskell
9
star
48

display

Haskell
8
star
49

ety

Simple API for etymology online
Haskell
8
star
50

copy-paste-sync

An easy way to share clipboard (not encrypted) on a trusted LAN
Haskell
8
star
51

tdiff

Simply print the time difference between lines from stdin
Haskell
8
star
52

frisby

Linear time composable parser for PEG grammars
Haskell
7
star
53

forge

Haskell form library
Haskell
7
star
54

asp-mode

A simple ASP mode for Emacs which does syntax highlighting and indentation support
Emacs Lisp
7
star
55

basic-lens

Basic lens type and functions
Haskell
6
star
56

number

Emacs number manipulation
Emacs Lisp
6
star
57

osdkeys

Show keys pressed with an on-screen display (Linux only)
Haskell
6
star
58

emacs-magit-config

Handy pre-made Emacs config for using magit
Emacs Lisp
6
star
59

org-focus

Emacs Lisp
6
star
60

haskell-exercises

Haskell training test suite
Haskell
6
star
61

gmail

GMail client for Emacs
Emacs Lisp
6
star
62

maintainer

Haskell
5
star
63

hex-server

A minimal X11 server written in Haskell
Haskell
5
star
64

cabal-sign

Haskell
5
star
65

blogination

Very simple blog software
Haskell
5
star
66

sorting

Sorting algorithms
Haskell
4
star
67

fore

Haskell Core to JavaScript compiler
Haskell
4
star
68

stack-doc

Show stack's documentation in Emacs
Emacs Lisp
4
star
69

cron-daemon

Run a program as a daemon
Haskell
4
star
70

keyboard-stats

Gather and produce statistics about keyboard typing habbits
Haskell
4
star
71

codeparty

Online code sharing teaching platform
JavaScript
4
star
72

pdfinfo

Simple pdfinfo wrapper
Haskell
4
star
73

haskelldb-demo

Haskell
4
star
74

hog

IRC logger bot
Haskell
3
star
75

clockin

Track clocking in and out of work.
Haskell
3
star
76

sourcemap

Implementation of source maps as proposed by Mozilla and Google
Haskell
3
star
77

proclog

Haskell
3
star
78

haskell-trace

Add tracing to modules.
Haskell
2
star
79

hamlet-mode

Emacs Lisp
2
star
80

pid1-rust

Rust
2
star
81

senza

An interface to blaze-html without the need for operators.
Haskell
2
star
82

env-args

Source program arguments from the environment in a predictable way
Haskell
2
star
83

url-generic

Parse/format generic key/value URLs from record data types.
Haskell
2
star
84

typegraph

Haskell
1
star
85

servant-example

Haskell
1
star
86

riker

Simple reverse proxy, replacement for nginx
Haskell
1
star
87

using-yaml-repro-4906

Haskell
1
star
88

liquid-post

Haskell
1
star
89

certbot-loop

Haskell
1
star
90

yaml-repro-4906

Haskell
1
star
91

stack-rebuilding-repro

Haskell
1
star
92

terminal

Haskell
1
star
93

snap-app

Small snap modules for MVC.
Haskell
1
star
94

yesod-lucid

Haskell
1
star
95

novella

Haskell
1
star
96

codepad

Haskell library for pasting to CodePad
Haskell
1
star