Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
tdlib-native
Advanced tools
Fast. TDLib
is a fastest way to interact with Telegram on NodeJS. It's written in C++ with optimized network stack and caching.
API Type | Package | Method | Time |
---|---|---|---|
TDLib | tdl | getChat | 21ms |
Telegram API | telegram (gram.js) | messages.getChats | 40ms |
Telegram Bot API | telegraf | getChat | 30ms |
Better DX. Unlike tdl
this package declarations use dictionary for methods instead of intersection type, making editor hints load almost immediate.
Secure. The library has only 1 dependency - node-addon-api
for building TDLib addon
npm
npm i tdlib-native
Yarn
yarn add tdlib-native
pnpm
pnpm add tdlib-native
This is raw wrapper of TDLib. It does not (yet) provide any mechanisms for authentication
import { Client } from "tdlib-native";
import { TDLibAddon } from "tdlib-native/addon";
async function init() {
// Loading addon
const adapter = await TDLibAddon.create();
// Make TDLib shut up. Immediately
Client.execute(adapter, "setLogVerbosityLevel", {
new_verbosity_level: 0
})
const client = new Client(adapter);
// Start polling responses from TDLib
client.start();
// Call any tdlib method
await client.api.getOption({ name: "version" });
// => Promise { _: "optionValueString", value: "1.8.13" }
// Subscribe to updates
client.updates.subscribe(console.log);
// Pause receiving updates. Will freeze method all running API calls
// client.pause();
// Resume pause
// client.start();
// Destroy
await client.api.close({});
client.destroy();
}
Usage with RxJS
// Observable will complete after client.destroy() call
const updates = new Observable(client.updates.toRxObserver());
FAQs
🚀 Telegram TDLib native nodejs wrapper
The npm package tdlib-native receives a total of 38 weekly downloads. As such, tdlib-native popularity was classified as not popular.
We found that tdlib-native demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.