Ever needed to pull posts, views, and data from Telegram channels without the hassle of APIs or authentication? telegram-scrapper by hesamhadadi is your zero-dependency Node.js solution – simple, fast, and outputs clean JSON.
Key Features
• No auth needed: Scrapes public channels directly.
• Zero dependencies: Lightweight and blazing fast.
• JSON output: Easy to parse posts, views, and more.
Perfect for analytics, bots, or research projects.
Quick Setup & Demo
Install via npm:
npm install telegram-scrapper
Then scrape away:
const { telegram_scraper } = require('telegram-scrapper');
async function scrapeChannel() {
const data = await telegram_scraper('telegram'); // Try @telegram!
console.log(data);
}
scrapeChannel();
Live demo available on CodeSandbox – check it out!
Why You’ll Love It
Unlike heavy libraries like Telethon, this is plug-and-play for Node devs. Built by hesamhadadi: https://github.com/hesamhadadi. NPM: https://www.npmjs.com/package/telegram-scrapper.
What channel will you scrape first? 🚀
Loved this? Hit that ❤️, share with your dev friends, and drop a star on GitHub! Your support means the world. 👇
Have questions or built something cool? Comment below – let’s chat!
Top comments (0)