Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xperimental/linky

Simple and fast link checker
https://github.com/xperimental/linky

golang hacktoberfest linkchecker utility

Last synced: 3 months ago
JSON representation

Simple and fast link checker

Awesome Lists containing this project

README

        

# linky

`linky` is a simple link-checker for websites. Given a start URL which returns HTML it will recursively fetch all referenced URLs and check if they return a valid result. It does not leave the domain it was started on, so it is suitable for testing a complete website without leaving to external sites.

## Installation

If you have a current (>=1.19) go installation you can simply do:

```
go install github.com/xperimental/linky@latest
```

Binary release can be found on the [Releases page](https://github.com/xperimental/linky/releases).

There's also a Docker image [`ghcr.io/xperimental/linky`](https://github.com/xperimental/linky/pkgs/container/linky).

## Usage

```
Usage: linky [options] URL

Options:
-i, --ignore-referrer Ignore referrer when checking for duplicate URLs.
-q, --quiet Only show errors.
-v, --verbose Show all requests including skipped.
```