Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/samolego/webcommander
- Owner: samolego
- License: lgpl-3.0
- Created: 2020-06-30T18:55:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-20T09:24:02.000Z (over 3 years ago)
- Last Synced: 2024-04-26T16:04:33.180Z (8 months ago)
- Topics: console, js-console-imitation, terminal, terminal-emulator
- Language: JavaScript
- Homepage: https://samolego.github.io/WebCommander
- Size: 1.54 MB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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');
```