An inline CLI telegram notifier. Used for sending message from CLI, or whenever another CLI command has finished
Go to file
2020-03-19 16:11:52 -04:00
bin Initial commit 2020-03-19 14:51:24 -04:00
flows Initial commit 2020-03-19 14:51:24 -04:00
.gitignore Published to npm 2020-03-19 15:57:26 -04:00
.npmignore Fixed bin name 2020-03-19 16:11:52 -04:00
index.js Initial commit 2020-03-19 14:51:24 -04:00
package-lock.json Initial commit 2020-03-19 14:51:24 -04:00
package.json Fixed bin name 2020-03-19 16:11:52 -04:00
README.md Published to npm 2020-03-19 15:57:26 -04:00
yarn.lock Initial commit 2020-03-19 14:51:24 -04:00

telme

CLI inline telegram bot notifications

TL;DR

  1. Get a bot token ( BotFather )
  2. $ npm install -g node-telme
  3. $ telme --init
  4. Do something :)

How do i get a bot token?

  • Get a telegram bot token from the botFather
  • Just talk to BotFather and follow a few simple steps. Once you've created a bot and received your authorization token, copy it for later

Configure telme

Simply run $ telme --init and follow the easy steps. You will need the bot token at this stage. This will help you generate a .telmeconfig file in your home directory. You can always run --init again to override values or just edit the file yourself.

Examples:

Simple message
$ telme --m "Message to send"
Task message

Task messages are a simple way to receive a message from your bot once a command has been finished. It will also let you know if you had any errors.

$ telme docker build . -t my-image/build/that/takes/for/ever

In this example, once the docker build has finished you will receive a message.

$ telme npm run test
$ telme do-a-long-task