emojibase-data
Version:
Evergreen emoji datasets.
30 lines (20 loc) • 947 B
Markdown
# Emojibase Data
[](https://github.com/milesj/emojibase/actions?query=branch%3Amaster)
[](https://www.npmjs.com/package/emojibase-data)
[](https://www.npmjs.com/package/emojibase-data)
[](https://www.jsdelivr.com/package/npm/emojibase-data)
Install the package.
```
yarn add emojibase-data
```
Import and use the localized JSON dataset.
```ts
import data from 'emojibase-data/en/data.json';
```
Or fetch the dataset from our CDN.
```ts
import { fetchFromCDN } from 'emojibase';
fetchFromCDN('en/data.json').then(data => data);
```
Please refer to the [official documentation](https://github.com/milesj/emojibase) for more
information.