@eqworks/notify
v2.0.0
Published
CLI for sending various notifications (currently only through Slack incoming webhooks).
Downloads
193
Readme
notify
CLI for sending various notifications (currently only through Slack incoming webhooks).
Usage
% npm i -g @eqworks/notify
% notify --help
% # Or through `npx`
% npx @eqworks/notify --help
To use the underlying library directly in supported JavaScript environments (local installation needed):
// since v2.0.0
const notify = require('@eqworks/notify/lib')
// or
import notify from '@eqworks/notify/lib'
Note: pre-v2.0.0, the library export was dispatched from the package index:
// For @eqworks/notify < v2.0.0
const notify = require('@eqworks/notify')
// or
import notify from '@eqworks/notify'