ac6486d668aa328e5623bd4a93a022f6d028ff36
				
			
			
		
	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.
Built With
Demo
Download & open index.html
Setup
  
    Development
  
Instructions
- Open 
index.html& edit away 
License
Copyright © 2023 Zakary Timson | Available under MIT Licensing
See the license for more information.
Description
				
					Languages
				
				
								
								
									HTML
								
								100%