Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alefesouza/alefesouza
:computer: The Alefe Souza CLI.
https://github.com/alefesouza/alefesouza
alefesouza business-card cli-app contact npm-package
Last synced: 7 days ago
JSON representation
:computer: The Alefe Souza CLI.
- Host: GitHub
- URL: https://github.com/alefesouza/alefesouza
- Owner: alefesouza
- Created: 2018-07-14T04:22:03.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-10T21:23:13.000Z (over 6 years ago)
- Last Synced: 2024-10-24T14:01:30.360Z (20 days ago)
- Topics: alefesouza, business-card, cli-app, contact, npm-package
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/alefesouza
- Size: 237 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# alefesouza
> The [Alefe Souza](https://alefesouza.com) CLI
![](screenshot.png)
## Usage
To install the CLI, first install Node.js, then:
```bash
$ npm install -g alefesouza
```and run:
```bash
$ alefesouza
```You can access my information without open CLI, just put what do you want to open after it, like:
```bash
$ alefesouza github
```Will open my GitHub profile, you can also just show some of my information on terminal, like:
```bash
$ alefesouza show email
$ [email protected]$ alefesouza show website
$ https://alefesouza.com
```To install on Node projects, run:
```bash
$ npm install alefesouza
```and
```js
console.log(require('alefesouza'));
```To get my contact information, you can also use the destructuring assignment, like:
```js
const { email } = require('alefesouza');console.log(email) // [email protected]
```## Built with
- [ink](https://github.com/vadimdemedes/ink) - React for interactive command-line apps
- [terminal-image](https://github.com/sindresorhus/terminal-image) - Display images in the terminal## Credits
The CLI is based on [Sindre Sorhus CLI](https://github.com/sindresorhus/sindresorhus), the JSON is based on [John K. Paul](https://github.com/johnkpaul/johnkpaul) idea.