Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tripplyons/alert-me

A shell utility that sends you a message through different means (Discord, Amazon Echo)
https://github.com/tripplyons/alert-me

alert alexa amazon-alexa amazon-echo discord notification notification-api notifications notifier

Last synced: 8 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# alert-me
A shell utility that sends you a message through different means (Discord, [Amazon Echo](https://www.thomptronics.com/about/notify-me))

`echo hi | alert-me`

![alert-me working with Discord](examples/discorddemo.gif)

## 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")
```