Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/samolego/webcommander

A simple JS terminal emulation
https://github.com/samolego/webcommander

console js-console-imitation terminal terminal-emulator

Last synced: 24 days ago
JSON representation

A simple JS terminal emulation

Awesome Lists containing this project

README

        

# WebCommander

A simple and lightweight (~ 16 KB) JS console imitation.
[Check it out](https://samolego.github.io/WebCommander)

![webcommander](https://user-images.githubusercontent.com/34912839/91016715-7ae41800-e5ed-11ea-9ca7-7d7ddb0e9fcb.gif)

# Get it now
Check out the [wiki](https://github.com/samolego/WebComander/wiki)

# Usage

### Include the JavaScript file:
```html



```
### Create a container:
Add a DIV element where you want the console.
```html


```

### Create the console:
Use this JS code to create a new console within the previously created DIV element.
```js
var myConsole = new WebCommander('console');
```