The Auto-Emoji Replacer is a Modifier Integration for Telex, automatically replacing specific words in messages with corresponding emojis. This enhances user communication by providing a dynamic emoji replacement system.
- Replaces predefined words with emojis in messages.
- Works as a Modifier Integration, modifying messages before they appear in a channel.
- Easy to configure and extend with additional emoji mappings.
git clone https://github.com/telexorg/auto-emoji-replacer.git
cd auto-emoji-replacer
npm install
npm start
By default, the server runs on http://localhost:3000
.
Send a POST request to test emoji replacement:
curl -X POST http://localhost:3000/process-message -H "Content-Type: application/json" -d '{"message": "I am happy"}'
Expected Response:
{
"Message": "I am happy 😊"
}
Create an integration-spec.json
file:
- The
integration.json
was hosted to a publicly accessible server. - The url is
https://auto-emoji-replacer.onrender.com/integration-spec
.
✔ Hosted integration-spec.json file
✔ Working Telex Integration
✔ Updated README with screenshots