0.3.7 • Published 5 years ago

bashme v0.3.7

Weekly downloads
84
License
MIT
Repository
github
Last release
5 years ago

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 command.

It has two important methods, use and show:

use(provider: IProvider)

This method registers a new IProvider in the Bashme instance. When the IProvider is registerd it adds commands to the Bashme instance that can be called by the user.

show(domElement: HTMLElement)

This method converts an HTMLElement into a full interactive terminal (Using xterm.js) to allow users to write the commands they want to execute.

Providers

A provider is a class that implements the IProvider interface and provides commands to the Bashme instance that the user can then execute.

Commands

A command is a class that inhertis from the AsyncCommand or the SyncCommand classes and are used to perform some specific action.

Built-in Providers

GitHub

See GitHub.ts

Commands

CommandDescription
githubShows GitHub profile information
github contribsShows GitHub contributions
github orgsShows GitHub organizations
github reposShows GitHub repositories

Json

See Json.ts

Commands

CommandDescription
nameShows name
bioShows bio
educationShows education
workShows work experience
volunteerShows volunteer experience
awardsShows awards
publicationsShows publications
skillsShows skills
languagesShows languages

License

MIT License

Copyright (c) 2018 Agustín Rodríguez

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

0.3.7

5 years ago

0.3.6

5 years ago

0.3.5

5 years ago

0.3.4

5 years ago

0.3.3

5 years ago

0.3.2

5 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.11

6 years ago

0.2.9

6 years ago

0.2.8

6 years ago

0.2.7

6 years ago

0.2.6

6 years ago

0.2.5

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

1.0.0

6 years ago