bashme, the first command line interface about you

agurodriguez

Agustín Rodríguez

Posted on December 6, 2018

bashme, the first command line interface about you

Hi! This is my first post. I'm very happy to be able to share something with the community after some time reading a lot of wonderful posts.

GitHub logo agurod42 / bashme

👨‍💻👩‍💻 The first command line interface about you

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'));
Enter fullscreen mode Exit fullscreen mode

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…

It would be awesome to hear your feedback and know if you find it useful and how it can be improved.

Thank you!

💖 💪 🙅 🚩
agurodriguez
Agustín Rodríguez

Posted on December 6, 2018

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related