{"versions":{"0.0.1":{"name":"emoji-images","version":"0.0.1","author":{"name":"Henrik Joreteg","email":"henrik@andyet.net"},"description":"Replace stuff like :smiley: in text with <img> tags of a corresponding image.","repository":{"type":"git","url":"git@github.com:henrikjoreteg/emoji-images.js.git"},"devDependencies":{"async":"","request":""},"_id":"emoji-images@0.0.1","dist":{"shasum":"eda7d410b7df606417eac159f318aa0b7c44a288","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/emoji-images/-/emoji-images-0.0.1.tgz","size":7947934,"integrity":"sha512-eJnnwQ+ie1Hrt3QBPXIrfuNYdNG/HWGEkyGnID6FIPuMlBOFuEEH7SV5dlfy8a57ccdB1axHb2wQLPKCYpJsaQ=="},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"henrik@andyet.net"},"maintainers":[{"name":"anonymous","email":"henrik@andyet.net"}],"directories":{},"_cnpmcore_publish_time":"2021-12-23T09:45:31.448Z","contributors":[]},"0.0.2":{"name":"emoji-images","version":"0.0.2","author":{"name":"Henrik Joreteg","email":"henrik@andyet.net"},"description":"Replace stuff like :smiley: in text with <img> tags of a corresponding image.","repository":{"type":"git","url":"git@github.com:henrikjoreteg/emoji-images.js.git"},"devDependencies":{"async":"","request":""},"main":"emoji-images.js","_id":"emoji-images@0.0.2","dist":{"shasum":"4890f091feab2e575458d20d2e9ef8867060e415","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/emoji-images/-/emoji-images-0.0.2.tgz","size":7947953,"integrity":"sha512-9eJC+01bGaubU0gX2zPdIDFgSeVLb7xC4QFsvqG44Etv6wCQwgKLpQL7tHmgqYFrQ7lDVfIBxzem2/dOfDjn5w=="},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"henrik@andyet.net"},"maintainers":[{"name":"anonymous","email":"henrik@andyet.net"}],"directories":{},"_cnpmcore_publish_time":"2021-12-23T09:45:39.644Z","contributors":[]},"0.1.0":{"name":"emoji-images","version":"0.1.0","author":{"name":"Henrik Joreteg","email":"henrik@andyet.net"},"description":"Replace stuff like :smiley: in text with <img> tags of a corresponding image.","repository":{"type":"git","url":"git@github.com:henrikjoreteg/emoji-images.js.git"},"devDependencies":{"async":"","request":""},"main":"emoji-images.js","_id":"emoji-images@0.1.0","dist":{"shasum":"d0873bdd5cc052236b68ca21d4f166a2b9017748","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/emoji-images/-/emoji-images-0.1.0.tgz","size":7947988,"integrity":"sha512-vKA5PAmpTnKlrPDoizwf1LoTn6JhFh/6wx8VNuIiN7nJvBdDu4FEbnF5iVsYTxcQ7FA9nlmQwEeFi3gbv+59sA=="},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"henrik@andyet.net"},"maintainers":[{"name":"anonymous","email":"henrik@andyet.net"}],"directories":{},"_cnpmcore_publish_time":"2021-12-23T09:45:49.563Z","contributors":[]},"0.1.1":{"name":"emoji-images","version":"0.1.1","author":{"name":"Henrik Joreteg","email":"henrik@andyet.net"},"description":"Replace stuff like :smiley: in text with <img> tags of a corresponding image.","repository":{"type":"git","url":"git@github.com:henrikjoreteg/emoji-images.js.git"},"devDependencies":{"async":"","request":""},"main":"emoji-images.js","_id":"emoji-images@0.1.1","dist":{"shasum":"f992dc72092c03fbe092827631987eb3b1319b67","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/emoji-images/-/emoji-images-0.1.1.tgz","size":7948003,"integrity":"sha512-UQZoqTsiSQI271j4gAXnceLdMyhRTQYY04X4yrfAdjz8ToifOCbA5LSnhJn+PEQjib74AjyHUatNZXt9nQhwbA=="},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"henrik@andyet.net"},"maintainers":[{"name":"anonymous","email":"henrik@andyet.net"}],"directories":{},"_cnpmcore_publish_time":"2021-12-23T09:46:12.916Z","contributors":[]}},"dist-tags":{"latest":"0.1.1"},"name":"emoji-images","time":{"created":"2022-01-27T01:54:23.756Z","modified":"2022-01-27T01:54:23.756Z","0.0.1":"2013-03-31T07:23:53.926Z","0.0.2":"2013-03-31T07:27:11.402Z","0.1.0":"2013-07-03T19:42:53.763Z","0.1.1":"2013-09-30T03:19:02.781Z"},"readme":"#emoji-images.js\n\nBecause sometimes you want to send a :heart: to someone.\n\n\n## What is this?\n\nTakes text, replaces all the texts here: http://www.emoji-cheat-sheet.com with an `<img>` tag containing the image.\n\nThe images are all in the [](pngs) folder. Host those somewhere, pass the URL to the function. See below:\n\n\n## How to use it\n\n```js\n\nvar string = 'a string containing emoji strings like :heart: and :trollface:';\n\n// the emoji function takes:\n// 1. The input string\n// 2. The url where the png files live\n// 3. (optionally) a size to specify as the height of the <img> tag.\nvar emojified = emoji(string, 'http://url.com/where-you-put-the-pngs-folder/', 30); \n\n```\n\nIt's bundled to work as a CommonJS module, AMD module or expose itself as a global as a fallback.\n\n## install\n\nGrab it here or on npm:\n\n```\nnpm install emoji-images\n```\n\n## Why not just use https://github.com/hassankhan/emojify.js?\n\nI want it all in a super simple text processing (without the CSS and DOM stuff).\n\nAlso, that solution embeds pngs as data-uri's in css documents. I don't want to do that because then I have to send all that image data to the browser even if they never get used.\n\n\n## Is it ready to use?\n\nUm... works for me™  (and in use on andbang.com)\n\n\n## License\n\nMIT","users":{}}