A web based linux terminal
Go to file
2023-12-06 19:26:16 +00:00
index.html Uploaded index file 2022-07-15 20:48:23 +00:00
LICENSE Update LICENSE 2023-12-05 03:09:24 +00:00
README.md Update README.md 2023-12-06 19:26:16 +00:00


Logo

Konsole

Experimental Web Based CLI

Version Pull Requests Issues



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

HTML JavaScript

Setup

Development

Instructions

  1. Open index.html & edit away

License

Copyright © 2023 Zakary Timson | Available under MIT Licensing

See the license for more information.