1.2.0 • Published 3 years ago

@d0whc3r/moleculer-telegram v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Moleculer logo

moleculer-telegram NPM version

Send Messages to Telegram API.

Install

$ npm install @d0whc3r/moleculer-telegram --save

Usage

This addon reads the TELEGRAM_TOKEN and TELEGRAM_CHANNEL environment variables, but all are optional

const { ServiceBroker } = require("moleculer");
const { TelegramService } = require("@d0whc3r/moleculer-telegram");

// Create broker
const broker = new ServiceBroker({ logger: console });

// Load my service
broker.createService({
    name: "telegram",
    mixins: [TelegramService]
});

// Start server
broker.start().then(() => {
  broker
    .call('telegram.send', { message: 'testing!' })
    .then((response) => {
      console.log('Telegram message response', response);
    })
    .catch(console.error);
});

Settings

PropertyTypeDefaultDescription
telegramTokenStringTELEGRAM_TOKEN env variableTelegram API Token.
telegramChannelStringTELEGRAM_CHANNEL env variableTelegram API Token.

Actions

send

Send a Telegram Message

Parameters

PropertyTypeDefaultDescription
messageStringrequiredMessage text
channelStringnull(optional) Channel name, can be array or string, if it is a string it could be multiple channels separated by commas
tokenStringnull(optional) Token to use

Results

Type: Promise<tt.Message[]>

Methods

sendMessageToChannels

Send a telegram message to one or more channels

Parameters

PropertyTypeDefaultDescription
messageString-Body of the message
channelString or Array<String>-Channel or channels name/s

Results

Type: Promise<tt.Message>[]

Test

$ npm test

License

The project is available under the MIT license.

1.2.0

3 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago