GitHub is a treasure trove of innovative projects, especially in the ever-evolving world of artificial intelligence. But sifting through the countless repositories to find those that combine AI and JavaScript? That’s like finding gems in a vast sea of code. Enter our Node.js web crawler—a script that automates the search, extracting repository details like name, URL, and description.
In this tutorial, we’ll build a crawler that taps into GitHub, hunting down repositories that work with AI and JavaScript. Let’s dive into the code and start mining those gems.
Begin by creating a new directory for your project and initializing it with npm:
mkdir github-ai-crawler cd github-ai-crawler npm init -y
Next, install the necessary dependencies:
npm install axios cheerio
GitHub provides a powerful search feature accessible via URL queries. For example, you can search for JavaScript repositories related to AI with this query:
https://github.com/search?q=ai+language:javascript&type=repositories
Our crawler will mimic this search, parse the results, and extract relevant details.
Create a file named crawler.js in your project directory and start coding.
const axios = require('axios'); const cheerio = require('cheerio');
We’re using axios to fetch GitHub’s search results and cheerio to parse the HTML.
const SEARCH_URL = 'https://github.com/search?q=ai+language:javascript&type=repositories';
This URL targets repositories related to AI and written in JavaScript.
2220 FREE RESOURCES FOR DEVELOPERS!! ❤️ ?? (updated daily)
1400 Free HTML Templates
351 Free News Articles
67 Free AI Prompts
315 Free Code Libraries
52 Free Code Snippets & Boilerplates for Node, Nuxt, Vue, and more!
25 Free Open Source Icon Libraries
Visit dailysandbox.pro for free access to a treasure trove of resources!
const fetchRepositories = async () => { try { // Fetch the search results page const { data } = await axios.get(SEARCH_URL); const $ = cheerio.load(data); // Load the HTML into cheerio // Extract repository details const repositories = []; $('.repo-list-item').each((_, element) => { const repoName = $(element).find('a').text().trim(); const repoUrl = `https://github.com${$(element).find('a').attr('href')}`; const repoDescription = $(element).find('.mb-1').text().trim(); repositories.push({ name: repoName, url: repoUrl, description: repoDescription, }); }); return repositories; } catch (error) { console.error('Error fetching repositories:', error.message); return []; } };
Here’s what’s happening:
Finally, call the function and log the results:
mkdir github-ai-crawler cd github-ai-crawler npm init -y
Save your script and run it with Node.js:
npm install axios cheerio
You’ll see a list of AI-related JavaScript repositories, each with its name, URL, and description, neatly displayed in your terminal.
Want to take it further? Here are some ideas:
Example for saving to a JSON file:
https://github.com/search?q=ai+language:javascript&type=repositories
With this crawler, you’ve automated the tedious task of finding relevant repositories on GitHub. No more manual browsing or endless clicking—your script does the hard work, presenting the results in seconds.
For more tips on web development, check out DailySandbox and sign up for our free newsletter to stay ahead of the curve!
The above is the detailed content of Building a Web Crawler in Node.js to Discover AI-Powered JavaScript Repos on GitHub. For more information, please follow other related articles on the PHP Chinese website!