GitHub emoji: gemoji
npm install gemoji[![Build][build-badge]][build]
[![Coverage][coverage-badge]][coverage]
[![Downloads][downloads-badge]][downloads]
[![Size][size-badge]][size]
Info on gemoji.
* What is this?
* When should I use this?
* Install
* Use
* API
* gemoji
* nameToEmoji
* emojiToName
* Types
* Data
* Compatibility
* Security
* Related
* Contribute
* Notice
* License
This package contains info on gemoji (GitHub Emoji).
Gemoji are the shortcodes that GitHub uses to represent emoji.
For example, :grinning: can be used for 😀.
Use this package if you need:
* info on gemoji, such as associated tags, description, and
category
* to map between emoji and names and vice versa
* to list emoji or names
This package is [ESM only][esm].
In Node.js (version 14.14+, 16.0+), install with [npm][]:
``sh`
npm install gemoji
In Deno with [esm.sh][esmsh]:
`js`
import {gemoji} from 'https://esm.sh/gemoji@8'
In browsers with [esm.sh][esmsh]:
`html`
See examples below.
This package exports the identifiers gemoji, emojiToName, andnameToEmoji.
There is no default export.
List of info objects (Array).Gemoji
Each has the following fields:
* emoji (string)😀
— example: names
* (Array)['grinning']
— example: tags
* (Array)['smile', 'happy']
— example: description
* (string)grinning face
— example: category
* (string)Smileys & Emotion
— example:
###### Example
`js
import {gemoji} from 'gemoji'
console.log(gemoji)
`
Yields:
`js`
[
{
emoji: '😀',
names: ['grinning'],
tags: ['smile', 'happy'],
description: 'grinning face',
category: 'Smileys & Emotion'
},
{
emoji: '😃',
names: ['smiley'],
tags: ['happy', 'joy', 'haha'],
description: 'grinning face with big eyes',
category: 'Smileys & Emotion'
},
{
emoji: '😄',
names: ['smile'],
tags: ['happy', 'joy', 'laugh', 'pleased'],
description: 'grinning face with smiling eyes',
category: 'Smileys & Emotion'
},
// …
]
Map of names (100) to emoji (💯) (Record).
###### Example
`js
import {nameToEmoji} from 'gemoji'
console.log(nameToEmoji.cat) //=> 🐱
console.log(nameToEmoji.poop) //=> 💩
`
Map of emoji (😀) to names (grinning) (Record).
###### Example
`js
import {emojiToName} from 'gemoji'
console.log(emojiToName['🐶']) //=> dog
console.log(emojiToName['\uD83D\uDCA9']) //=> hankey
`
This package is fully typed with [TypeScript][].
It exports an additional type Gemoji.
See [support.md][support] for what info is included.
The data is crawled from [github/gemoji][gh] and later processed for relevant
information.
No images are included in this repository: the copyrighted material may or may
not be available on the users computer.
This package is at least compatible with all maintained versions of Node.js.
As of now, that is Node.js 14.14+ and 16.0+.
It also works in Deno and modern browsers.
This package is safe.
* words/emoji-emotion
— list of emoji rated for valence
* wooorm/emoticon
— info on ASCII emoticons
* wooorm/strip-skin-tone
— strip skin-tones from emoji
* wooorm.com/checkmoji
— check emoji across platforms
Yes please!
See [How to Contribute to Open Source][contribute].
wooorm/gemoji is not affiliated with GitHub.
See its [github/gemoji`][gh-license] for info on GHs licensing.
[MIT][license] © [Titus Wormer][author]
[build-badge]: https://github.com/wooorm/gemoji/workflows/main/badge.svg
[build]: https://github.com/wooorm/gemoji/actions
[coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/gemoji.svg
[coverage]: https://codecov.io/github/wooorm/gemoji
[downloads-badge]: https://img.shields.io/npm/dm/gemoji.svg
[downloads]: https://www.npmjs.com/package/gemoji
[size-badge]: https://img.shields.io/bundlephobia/minzip/gemoji.svg
[size]: https://bundlephobia.com/result?p=gemoji
[npm]: https://docs.npmjs.com/cli/install
[esmsh]: https://esm.sh
[license]: license
[author]: https://wooorm.com
[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
[typescript]: https://www.typescriptlang.org
[contribute]: https://opensource.guide/how-to-contribute/
[support]: support.md
[gh]: https://github.com/github/gemoji
[gh-license]: https://github.com/github/gemoji/blob/55a0080/LICENSE