Skip to content

A shell utility that sends you a message through different means (Discord, Amazon Echo)

License

Notifications You must be signed in to change notification settings

tripplyons/alert-me

Repository files navigation

alert-me

A shell utility that sends you a message through different means (Discord, Amazon Echo)

echo hi | alert-me

alert-me working with Discord

Usage

Installation

npm i -g alert-me

Setup (Configuration Tool)

alert-me --config

Sending messages

To the default provider

echo "message" | alert-me

To a chosen provider

echo "message" | alert-me discord

To all providers

echo "message" | alert-me all

Node API

const alertMe = require("alert-me")
alertMe("message")
alertMe("message", "discord")
alertMe("message", "echo")