npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

bytecrawl

v1.0.2

Published

Recursieve webcrawler die subdomeinen, pagina's en afbeeldingen vindt en crawlt.

Readme

Een krachtige en efficiënte Node.js webcrawler, ontwikkeld door Bytevision. Deze package is ontworpen om recursief websites te crawlen, inclusief alle subdomeinen en pagina's, om content, afbeeldingen en links te extraheren.

Gemaakt om ontwikkelaars te helpen snel en eenvoudig data van het web te verzamelen voor analyse, AI-training of archivering.

Kenmerken

  • Recursief Crawlen: Vindt en verwerkt automatisch alle pagina's op een domein en de bijbehorende subdomeinen.

  • Content Extractie: Extraheert paginatitels, metabeschrijvingen, koppen en platte tekst.

  • Afbeeldingen & Links: Verzamelt alle afbeeldingen en interne links per pagina.

  • Flexibele Opties: Stel limieten in voor het maximale aantal te crawlen pagina's en karakters.

  • Ingebouwde Beleefdheid: Bevat een instelbare vertraging tussen verzoeken om servers niet te overbelasten.

TypeScript Ondersteuning: Volledig getypeerd voor een geweldige ontwikkelervaring.

Installatie Installeer de package eenvoudig via npm:

bash npm install bytecrawl Gebruik Importeer de crawlWebsite functie en start met crawlen. De functie is async en retourneert een Promise met het resultaat.

javascript import { crawlWebsite } from 'bytecrawl';

async function startCrawling() { try { console.log('Starten met crawlen...');

const result = await crawlWebsite('https://jouw-website.nl', {
  maxPages: 50,       // Optioneel: max aantal te crawlen pagina's (standaard: 50)
  maxChars: 500000,   // Optioneel: max totaal aantal karakters (standaard: 500000)
  delay: 500          // Optioneel: vertraging in ms tussen verzoeken (standaard: 1000)
});

if (result.success) {
  console.log('Crawl succesvol afgerond!');
  console.log('Statistieken:', result.data.statistics);
  
  // Voorbeeld: Toon de titel van de eerste gecrawlde pagina
  if (result.data.pages.length > 0) {
    console.log('Titel eerste pagina:', result.data.pages[0].title);
  }
  
  // De volledige geformatteerde tekst
  // console.log(result.data.formattedContent);
} else {
  console.error('Crawl mislukt:', result.error);
}

} catch (error) { console.error('Er is een onverwachte fout opgetreden:', error); } }

startCrawling(); Over Bytevision Bytevision specialiseert zich in het ontwikkelen van kant-en-klare AI-modules om bedrijfsprocessen te automatiseren en te verbeteren. Van slimme chatbots tot data-analyse, wij maken AI toegankelijk.​

Bezoek onze website www.bytevision-ai.nl voor meer informatie over onze AI-oplossingen.

Licentie Dit project is beschikbaar onder de MIT-licentie.