🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

happy-github-dependents

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

happy-github-dependents

Uses happy-dom to scrape GitHub dependents pages for a Github repository and generate a report sorted by stars in various formats (HTML, Markdown, CSV).

latest
Source
npmnpm
Version
1.1.0
Version published
Weekly downloads
23
91.67%
Maintainers
1
Weekly downloads
 
Created
Source

About

Uses Happy DOM to scrape GitHub dependents pages for a Github repository and generate a report sorted by stars in various formats (HTML, Markdown, JSON, CSV).

This tool doesn't require any API keys as it uses the public GitHub web interface to get the data.

Published on NPM

Usage

Command Line

Example

npx happy-github-dependents --url=<repository_url>

or

npx happy-github-dependents --url=<repository_url> --type=<html|markdown|json|csv> --output=<output_file>

Arguments

ArgumentDescriptionDefault valueRequired
--urlURL of the GitHub repositoryYes
--typeOutput format: html, markdown, json, or csvhtmlNo
--outputOutput file path./dependents.{ext}No

JavaScript

Example

import { getDependents } from "happy-github-dependents";

const dependents = await getDependents(
	"https://github.com/capricorn86/happy-dom",
);

dependents.sort((a, b) => b.stars - a.stars);

console.log(dependents);

Keywords

github

FAQs

Package last updated on 04 Feb 2026

Did you know?

Socket

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.

Install

Related posts