Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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 (and platform-dependent prebuilt tdlib)
npm
npm i tdlib-native
Yarn
yarn add tdlib-native
pnpm
pnpm add tdlib-native
This is raw wrapper of TDLib
import { Client, Authenticator } 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.disableLogs(adapter);
const client = new Client(adapter);
const authenticator = Authenticator.create(client)
.tdlibParameters({
/* options */
})
.token(process.env.TELEGRAM_BOT_TOKEN);
// Start polling responses from TDLib
client.start();
await authenticator.authenticate();
// client authorized as bot
// Call any tdlib method
await client.api.getOption({ name: "version" });
// => Promise { _: "optionValueString", value: "1.8.22" }
// or use a wrapper
await client.tdlibOptions.get("version");
// => Promise "1.8.22"
// 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
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.