https://github.com/momsfriendlydevco/send
Simple notification system with extendable modules
https://github.com/momsfriendlydevco/send
Last synced: 6 months ago
JSON representation
Simple notification system with extendable modules
- Host: GitHub
- URL: https://github.com/momsfriendlydevco/send
- Owner: MomsFriendlyDevCo
- License: mit
- Created: 2024-08-27T02:48:11.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-08-10T01:39:42.000Z (12 months ago)
- Last Synced: 2025-12-22T06:02:15.833Z (7 months ago)
- Language: JavaScript
- Size: 127 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
@MomsFriendlyDevCo/Send
=======================
Simple notification system with extendable modules.
```javascript
import Send from '#lib/send';
new Send()
.use('slack', {
enabled: false,
// ... Slack config goes below here ... //
token: 'FIXME',
channel: 'FIXME',
username: 'FIXME',
})
.use('freedcamp', {
enabled: false,
// ... Freedcamp config goes here ... //
apiKey: 'FIXME',
secret: 'FIXME',
projectId: 'FIXME',
discussionListTitle: 'FIXME',
discussionListId: 'FIXME',
})
.send('Hello World')
```
... or via the cli ...
```shell
send \
-m slack@token=FIXME,channel=FIXME,username=FIXME \
-m freedcamp@apiKey=FIXME,secret=FIXME,projectId=FIXME,discussionListTitle=FIXME \
--text "Hello World"
```