https://github.com/syncush/slack-emojis
Repo for the slack-emojis npm package
https://github.com/syncush/slack-emojis
Last synced: 7 months ago
JSON representation
Repo for the slack-emojis npm package
- Host: GitHub
- URL: https://github.com/syncush/slack-emojis
- Owner: syncush
- Created: 2020-08-21T16:49:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-17T11:47:35.000Z (over 5 years ago)
- Last Synced: 2025-09-03T01:14:00.875Z (8 months ago)
- Language: JavaScript
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Slack-Emojis





This packages exposes all the possible emojis available in a slack chat.
# Possible Usages
One out of many possibilities is that you are writing a webhook feature which integrates with slack and you would like to use emojis,
you would have to use a magic string in your code(e.g :boom: <==> `:boom:` <==> `slackEmojis.BOOM`).
`slack-emojis` is here for the rescue!
# Package Usage
```
const slackEmojis = require('slack-emojis');
console.log(slackEmojis.RELAXED); // outputs :relaxed:
```