
Security News
Node.js Homepage Adds Paid Support Link, Prompting Contributor Pushback
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
nitter-scraper
Advanced tools
A Twitter scraper that uses Nitter to fetch tweets without authentication
A TypeScript package for scraping tweets from Nitter without authentication.
# Install as a library
npm install nitter-scraper
# Or install globally to use as CLI
npm install -g nitter-scraper
import { fetchTweets } from "nitter-scraper";
async function main() {
const tweets = await fetchTweets("username", 3); // username without @, max pages (optional)
console.log(`Found ${tweets.length} tweets`);
}
main().catch(console.error);
# Run the scraper using Bun
bun run cli
# Or if installed globally
nitter-scraper
fetchTweets(username: string, maxPages?: number): Promise<Tweet[]>
Parameters:
username
: Twitter username to scrape (without @)maxPages
: Maximum number of pages to fetch (default: 3)interface Tweet {
id: string;
text: string;
username: string;
created_at: string;
timestamp: number | null;
}
MIT
FAQs
A Twitter scraper that uses Nitter to fetch tweets without authentication
The npm package nitter-scraper receives a total of 15 weekly downloads. As such, nitter-scraper popularity was classified as not popular.
We found that nitter-scraper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.
Research
Security News
The Socket Research Team investigates a malicious Python typosquat of a popular password library that forces Windows shutdowns when input is incorrect.