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

https://github.com/streamich/emoji-json-list

List of emojis, their aliases and unicode values
https://github.com/streamich/emoji-json-list

Last synced: 11 months ago
JSON representation

List of emojis, their aliases and unicode values

Awesome Lists containing this project

README

          

# emoji-json-list

Just a list of `[emoji, alias, unicode]` tuples.

## Installation

```
npm i emoji-json-list
```

## Usage

```js
const {list} = require('emoji-json-list');

console.log(list[0]);
console.log(list[1]);
console.log(list[2]);

// [ '🕶', 'dark_sunglasses', '1f576' ]
// [ '🌴', 'palm_tree', '1f334' ]
// [ '🤒', 'face_with_thermometer', '1f912' ]
```

## License

[Unlicense](LICENSE) — public domain.