A web based linux terminal
index.html | ||
LICENSE | ||
README.md |
Table of Contents
About
This is an experimental project to simulate a bash console inside the webbrowser. It is ment to be highly configurable & extendable like a real CLI.
Programs can be added to the environment by extending the global cli
dictionary like so:
window.cli['echo'] = {
autocomplete: () => {
return [];
},
help: () => {
return 'Output text to console';
},
run: args => {
return args.join(' ');
}
}
Everything is written in vanilla JS so it can be easily ported.
Demo
Download & open index.html
Built With
Setup
Development
Instructions
- Open
index.html
& edit away
License
Copyright © 2023 Zakary Timson | Available under MIT Licensing
See the license for more information.