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
- Host: GitHub
- URL: https://github.com/streamich/emoji-json-list
- Owner: streamich
- License: unlicense
- Created: 2019-04-20T13:33:24.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T17:27:12.000Z (over 2 years ago)
- Last Synced: 2025-08-09T05:33:20.474Z (11 months ago)
- Language: JavaScript
- Size: 1.36 MB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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.