https://github.com/skitsanos/slack-logger
Post errors and exceptions directly to your Slack channel
https://github.com/skitsanos/slack-logger
slack slack-api slack-app slack-webhook slackapi
Last synced: about 2 months ago
JSON representation
Post errors and exceptions directly to your Slack channel
- Host: GitHub
- URL: https://github.com/skitsanos/slack-logger
- Owner: skitsanos
- License: mit
- Created: 2019-08-16T15:54:03.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-02T20:50:03.000Z (about 2 years ago)
- Last Synced: 2025-01-15T20:19:50.348Z (over 1 year ago)
- Topics: slack, slack-api, slack-app, slack-webhook, slackapi
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# slack-logger
```js
const log = new SlackLogger('YOUR_TOKEN');
log.raw('simple text message');
log.error(new Error('err happened'));
log.message('friendly message from the app');
```