![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
NodeJS library providing low level operations for dealing with Emoji glyphs in the Unicode standard. :cool:
EmojiData.js is like a swiss-army knife for dealing with Emoji encoding issues.
If all you need to do is translate :poop:
into :poop:, then there are plenty
of other libs out there that will probably do what you want. But once you are
dealing with Emoji as a fundamental part of your application, and you start to
realize the nightmare of doublebyte encoding or
variants, then this library may be your new best friend.
:raised_hands:
EmojiData.js is written by the same author as the Ruby emoji_data.rb gem, which is used in production by Emojitracker.com to parse well over 100M+ emoji glyphs daily. This version was written to provide all the same functionality while taking advantage of the crazy speed of the V8 runtime environment. :dizzy:
npm install emoji-data
> var EmojiData = require('emoji_data');
> EmojiData.from_unified('2665');
{ name: 'BLACK HEART SUIT',
unified: '2665',
variations: [ '2665-FE0F' ],
docomo: 'E68D',
au: 'EAA5',
softbank: 'E20C',
google: 'FEB1A',
short_name: 'hearts',
short_names: [ 'hearts' ],
text: null,
apple_img: true,
hangouts_img: true,
twitter_img: true }
> EmojiData.all().length
845
> EmojiData.all_with_variants().length
107
> EmojiData.find_by_short_name("moon").length
13
> EmojiData.find_by_name("tree").map(
function(c) { return [c.unified, c.render(), c.name]; }
);
[ [ '1F332', '🌲', 'EVERGREEN TREE' ],
[ '1F333', '🌳', 'DECIDUOUS TREE' ],
[ '1F334', '🌴', 'PALM TREE' ],
[ '1F384', '🎄', 'CHRISTMAS TREE' ],
[ '1F38B', '🎋', 'TANABATA TREE' ] ]
> EmojiData.scan("I ♥ when marketers talk about the ☁. #blessed").forEach(
function(ec) { console.log("Found some " + ec.short_name + "!"); }
);
Found some hearts!
Found some cloud!
http://coffeedoc.info/github/mroth/emoji-data-js/master/
Please be sure to run npm test
and help keep test coverage at :100:.
There is a full benchmark suite available via npm run-script bench
. Please
test before and after your changes to ensure you have not caused a performance
regression.
0.2.0 (8 September 2014)
FAQs
Emoji encoding swiss army knife for NodeJS
The npm package emoji-data receives a total of 0 weekly downloads. As such, emoji-data popularity was classified as not popular.
We found that emoji-data demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.