Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

🤖 ascii face


Generate ASCII faces with colour



Downloads

![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)
// ...
```