Socket
Socket
Sign inDemoInstall

emoji

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    emoji

This library allows the handling and conversion of Emoji in Javascript.


Version published
Weekly downloads
833
increased by22.5%
Maintainers
1
Install size
569 kB
Created
Weekly downloads
 

Readme

Source

emoji Build Status Coverage Status

NPM

logo

This library allows the handling and conversion of Emoji in Javascript.

Usage

Browser

see demo.html

Use staticfile.org CDN:

<link href="http://cdn.staticfile.org/emoji/0.2.2/emoji.css" rel="stylesheet" type="text/css" />
<script src="http://cdn.staticfile.org/jquery/2.1.0/jquery.min.js"></script>
<script src="http://cdn.staticfile.org/emoji/0.2.2/emoji.js"></script>
var $text = $('.emojstext');
var html = $text.html().trim().replace(/\n/g, '<br/>');
$text.html(jEmoji.unifiedToHTML(html));
Seajs
seajs.config({
  alias: {
    emoji: 'http://cdn.staticfile.org/emoji/0.2.2/emoji.js'
  }
});

seajs.use(['emoji'], function (emoji) {
  // TODO
});
// or
define('test', function (require, exports, modules) {
  var emoji = require('emoji');
});
RequireJS (AMD)
require.config({
  paths: {
    emoji: 'http://cdn.staticfile.org/emoji/0.2.2/emoji.js'
  }
});

require(['emoji'], function (emoji) {
  // TODO
});

Nodejs

$ npm install emoji
var emoji = require('emoji');
console.log('😎', emoji.unifiedToHTML('😎'));

test on nodejs:

$ make test

Sync data

Source data come from php-emoji.

Run bin/syncdata.sh script, will keep emoji.png, emoji.css, table.html update. And it will create emoji.js from table.html.

sh ./bin/syncdata.sh

Authors

Missing emojis support by: Nariman Haghighi auspicious@gmail.com and Jonathan Ong jonathanrichardong@gmail.com.

$ git summary

 project  : emoji
 repo age : 1 year, 8 months
 active   : 18 days
 commits  : 61
 files    : 24
 authors  :
    48  fengmk2                 78.7%
     6  pachtymichuk            9.8%
     4  Jonathan Ong            6.6%
     2  Julian Bäume           3.3%
     1  Craig Condon            1.6%

License

(The MIT License)

Copyright (c) 2012 - 2014 fengmk2 fengmk2@gmail.com.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

FAQs

Last updated on 20 Feb 2014

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc