Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/o8e/ascii-face
🤖 Generate ASCII faces with colour
https://github.com/o8e/ascii-face
Last synced: 1 day ago
JSON representation
🤖 Generate ASCII faces with colour
- Host: GitHub
- URL: https://github.com/o8e/ascii-face
- Owner: o8e
- License: mit
- Created: 2020-04-21T19:00:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-01T19:00:09.000Z (about 2 years ago)
- Last Synced: 2024-12-31T06:35:51.018Z (14 days ago)
- Language: TypeScript
- Homepage:
- Size: 835 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
🤖 ascii face
Generate ASCII faces with colour
![Standard](https://raw.githubusercontent.com/o8e/ascii-face/master/assets/img/example-mono.png)
![Colour](https://raw.githubusercontent.com/o8e/ascii-face/master/assets/img/example-color.png)
### Summary
A silly package I created whilst working on a side project. I needed faces for profile images, and thought why not have a unique set of text-based generated faces.
> There are 501,600 potential combinations
### Usage
For now it's a default export, so import it however you want.
```bash
npm install ascii-face -s
```Standard
```js
import facegen from 'ascii-face'
const face = facegen()
// ...
```Colour
```js
import facegen from 'ascii-face'
const face = facegen(true)
// ...
```