Telenode
Lightweight Telegram API framework for Node.js
Features
✅ Explicit messages handlers
✅ Fallback messages handler (empty string)
✅ Regex matching on text messages
✅ Buttons support (inline keyboard, reply keyboard and remove reply keyboard)
✅ Secret token support
Getting started
Installation
npm install telenode-js
Set webhook
In order to listen to updates from Telegram servers you have to set up a webhook.
The webhook url will be stored in a .env
file in the root of your project
as WEBHOOK=https://your_amazing_webhook.com
.
Then you can execute the following command:
npx set-webhook
Usage
const Telenode = require('telenode-js');
require('dotenv').config();
const bot = new Telenode({
apiToken: process.env.API_TOKEN,
});
bot.createServer();
bot.onTextMessage('hello', async (messageBody) => {
console.log(messageBody);
await bot.sendTextMessage('hello back', messageBody.chat.id);
});
In this example the bot will listen only to 'hello' text messages and will respond to the user 'hello back'. Any other
message will be ignored.
Additional examples can be found in the examples folder.
Webhook security with secret token
You can secure your webhook with a secret token via the setWebhook
method. You can do that by creating
a SECRET_TOKEN
variable in the .env
file of your project and run the npx set-webhook
command. The command will
tell Telegram servers to send the secret token in each request to your webhook as x-telegram-bot-api-secret-token
header.
In order for the bot to use the secret token you need to pass to the Telenode
class you instanciate the secretToken
parameter.
You will have to pass a secretToken
parameter to the telenodeHandler
method as well.
You can pass a third parameter called unauthorizedCallback
- a callback that will fire in case the request wasn't
authorized.
You can find the example in the secretToken.js example and the implementation in src/server.js as well.
Local development:
Each feature of Telenode
is demonstrated in an example file inside the examples
folder.
For local development you need to set a webhook as well with the set-webhook
command. How you execute the command is
slightly different from using the installed package like explained above. Instead of npx
just use npm run
:
npm run set-webhook
For local development you should spin up a local express server with the command bot.createServer()
. More on that will be explained in the Deployment section down below.
The webhook url should be presented in the .env
file or be exported as an environment variable.
In order to develop a new feature or to run an existing one you should use the dev
command from the package.json
with the --file
flag like so:
npm run dev --file=<example>
Deployment:
Since these days it is common to use serverless backend services, you can choose how the bot will work - or with express
or with the HTTP
engine of the serverless provider.
In order to spin up an express server you should use the command bot.createServer()
- this is useful for deployments on VMs / containers / on-premise.
You can pass an object as options for createServer
. Currently, it supports port
and unauthorizedCallback
(if you use secret token) - e.g:
bot.createServer({ port: 4000 }) // the default is 3000
In the other hand, if you want to deploy on serverless backend you need to use bot.telenodeHandler
method and pass to it the request object.
You will probably have something like this:
functions.https.onCall((req, res) => {
const secretToken = req.headers['x-telegram-bot-api-secret-token'];
bot.telenodeHandler(req.body, secretToken, unauthorizedHandler);
res.end();
});
Note that on serverless you should extract by your own the secretToken
since every serverless service might process the req
object differently.
TODO's