Skip to content

Mathster0598/emoji.json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

emoji.json npm

Just an emoji.json.

Generated from full-emoji-list with this script.

Usage

install with npm

npm install emoji.json then:

var emoji = require('emoji.json')
console.log(emoji[2])
// {
//   "no": "3",
//   "code": "1F602",
//   "char": "😂",
//   "name": "FACE WITH TEARS OF JOY",
//   "date": "2010ʲ",
//   "default": "emoji",
//   "keywords": "face, joy, laugh, tear"
// }

if you care about file size:

var emojiCompact = require('emoji.json/emoji-compact.json')
console.log(emojiCompact)
// {
//   "header": ["default","char","name","keywords"],
//   "data": [
//     ["emoji","😀","GRINNING FACE","face, grin"],
//     ["emoji","😁","GRINNING FACE WITH SMILING EYES","eye, face, grin, smile"],
//     ["emoji","😂","FACE WITH TEARS OF JOY","face, joy, laugh, tear"],
//     ...
//   ]
// }

fetch from web

About

Just an emoji.json

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%