Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michael-j-scofield/mojify
Converts text to emojis 👌🏻
https://github.com/michael-j-scofield/mojify
converter emojis mojify te-to-emoji
Last synced: about 1 month ago
JSON representation
Converts text to emojis 👌🏻
- Host: GitHub
- URL: https://github.com/michael-j-scofield/mojify
- Owner: Michael-J-Scofield
- Created: 2017-07-22T13:47:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-22T14:06:11.000Z (over 7 years ago)
- Last Synced: 2024-10-29T05:06:06.275Z (about 2 months ago)
- Topics: converter, emojis, mojify, te-to-emoji
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mojify.js
Convert regular text to emojis. 👌🏻
### Installation
```
npm install mojify
```### Usage
### From the command line
Run the mojify.js from where you have it installed.
```
./mojify.js 'I like this package more then you'
```
Result:
```
I 👩❤️💋👩 this 📦 ➕ then 😀
```### As node.js module
```javascript
var mojify = require('mojify');console.log(mojify.convert('I like this package more then you')); //I 👩❤️💋👩 this 📦 ➕ then 😀
```