bashme
Bashme is a library which provides a nerdy way to tell people about you. It was created with the intention to use it as a resumé replacement but I it can have other use cases. It aims to be customizable, extensible and easy to use.
Demo
Play with it in my personal website: http://agurodriguez.net
Getting Started
Install it:
npm install bashme
Use it:
var bashme = new Bashme.Bashme();
bashme.use(new Bashme.GitHub('agurodriguez'));
bashme.show(document.querySelector('#bashme'));
Full code in example folder.
If you use react, you can try react-bashme.
A bit into the code
The Bashme
instance
Bashme
is the main class which acts as library's entry point. It's reponsible for processing the input/output from/to the terminal and for running the tasks related to every given…