konsole/README.md
2023-12-06 19:26:16 +00:00

2.9 KiB


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.