Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/xperimental/linky
- Owner: xperimental
- License: mit
- Created: 2017-02-19T23:37:06.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-02-25T00:41:48.000Z (almost 2 years ago)
- Last Synced: 2024-10-08T23:21:20.386Z (4 months ago)
- Topics: golang, hacktoberfest, linkchecker, utility
- Language: Go
- Homepage:
- Size: 118 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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] URLOptions:
-i, --ignore-referrer Ignore referrer when checking for duplicate URLs.
-q, --quiet Only show errors.
-v, --verbose Show all requests including skipped.
```