This README is available in multiple languages. Click below to switch:
Deadlink-Hunter is an open-source project designed to find broken links in GitHub repositories (with future support for other platforms). The goal is to help maintainers keep their documentation clean, reliable, and frustration-free for readers.
Deadlink Hunter Website is the frontend of the website.
You can also check Broken-Link-Checker, this is the backend of the project that checks if a link is broken or not. Additionally, check out Deadlink-Crawler, a new repository for crawling and analyzing links efficiently.
The project was inspired as a way to give back to the open source community, everyone is welcome.
This is the general design desired for the website, generated by Lovable, just to provide inspiration.
You can see the deployed website here: Deadlink-Hunter Website
You can check the more elaborated ui that was created with base44 as initial inspiration.
Please Note: This repository contains the Frontend (User Interface) of the Deadlink-Hunter project.
To fully use the scanner features, you MUST run the Backend server locally (or connect to a deployed instance). The frontend communicates with the backend to perform the actual link checking.
Get the Backend here: Broken-Link-Checker Repository
Documentation is the first entry point for most developers exploring a project. Yet, README files and docs often contain outdated or broken links – even in large, well-maintained repositories.
But aren’t there already broken link checkers? There are — but most of them don’t look very good, their UIs are not user-friendly, and their broken link detection doesn’t cover all cases (for example, localhost:4000 is not actually broken).
Go back to the top of the page
Contributions are welcome and greatly appreciated!
To contribute:
Clone your fork locally:
```bash git clone https://github.com//Broken-Link-Website.git cd Broken-Link-Website
```
(Optional) Install pnpm package manager from this link.
bash
pnpm installbash
pnpm run devbash
git checkout -b my-featurebash
git push origin my-featuremain branch of the original repository.⚠️ Heads up: PRs that are fully AI generated and not checked by a human won’t be accepted.
Go back to the top of the page
We have a Discussions page where you can share ideas, ask questions, and connect with the community:
Go back to the top of the page
This project includes a .env.example file in the repository that lists the environment variables required to run the app.
Before running the project, create a local .env file based on the example.
You can copy it quickly using the command below:
# macOS / Linux
cp .env.example .env
# PowerShell
Copy-Item .env.example .env
The .env file includes the variable:
http://localhost:3000Ensure your backend server is running on this port, or update the value to match your backend configuration.
This project includes Docker support for easy deployment and development. You can run the application using Docker in two ways:
The easiest way to run the application is using Docker Compose:
# Build and start the application
docker-compose up --build
# Or run in detached mode (background)
docker-compose up --build -d
The application will be available at http://localhost
To stop the application:
docker-compose down
You can also build and run the Docker container directly:
# Build the Docker image
docker build -t deadlink-hunter .
# Run the container
docker run -p 80:6006 deadlink-hunter
The application will be available at http://localhost
6006 inside the container and is mapped to port 80 on your host machinenode:20-alpine for the build stage and nginx:1.27-alpine for the runtimeGo back to the top of the page
The backend exposes a REST API for checking broken links.
We generated a Postman collection based on the internal Swagger documentation to help you test the API locally.
./postman/broken-link-checker.postman_collection.json
Make sure your backend server is running at http://localhost:3000 (or adjust the base URL in Postman if needed).
This project is based on the Mantine Vite template.
Go back to the top of the page
This template comes with the following features:
Go back to the top of the page
Go back to the top of the page
dev – start development serverbuild – build production version of the apppreview – locally preview production buildtypecheck – checks TypeScript typeslint – runs ESLintprettier:check – checks files with Prettiervitest – runs vitest testsvitest:watch – starts vitest watchtest – runs vitest, prettier:check, lint and typecheck scriptsstorybook – starts storybook dev serverstorybook:build – build production storybook bundle to storybook-staticprettier:write – formats all files with PrettierGo back to the top of the page
Thanks to all the amazing contributors who have helped make this project better! 🎉
$ claude mcp add Broken-Link-Website \
-- python -m otcore.mcp_server <graph>