1. emojibase-data
Evergreen emoji datasets.
emojibase-data
Package: emojibase-data
Created by: milesj
Last modified: Sun, 03 Dec 2023 20:44:17 GMT
Version: 15.3.0
License: MIT
Downloads: 281,346
Repository: https://github.com/milesj/emojibase

Install

npm install emojibase-data
yarn add emojibase-data

Emojibase Data

Build Status
npm version
npm deps
jsDelivr Hits

Install the package.

yarn add emojibase-data

Import and use the localized JSON dataset.

 import data from 'emojibase-data/en/data.json';

Or fetch the dataset from our CDN.

 import { fetchFromCDN, fetchEmojis, fetchShortcodes } from 'emojibase';

const englishEmojis = await fetchFromCDN('en/data.json', { shortcodes: ['github'] });
const japaneseCompactEmojis = await fetchEmojis('ja', { compact: true });
const germanCldrShortcodes = await fetchShortcodes('de', 'cldr');

Documentation

https://emojibase.dev/docs/datasets

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin