To set up the project run the following command
npm install moji-node
or if you use yarn
yarn add moji-node
Import into the file where you want to use this dependency:
const emojie = require('moji-node')
or
const {stringify, parse} = require('moji-node')
the stringify function allows you to transform a text with emojis into code to be able to easily save them in a database
To transform a text that includes emojis you must use the stringify function :
let text = 'Hello ➰'
stringify(text)
He will return :
Hello [27B0]
The parse function is used when you want to transform a text with an emoji code
To display the text that has an emoji use the parse function
let text = 'Hello [27B0]'
parse(text)
He will return :
Hello ➰