Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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 👌🏻

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 😀
```