Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gschier/golang-link-fetcher
A CLI to crawl a list of URLs and print out the set of unique links discovered
https://github.com/gschier/golang-link-fetcher
Last synced: about 2 months ago
JSON representation
A CLI to crawl a list of URLs and print out the set of unique links discovered
- Host: GitHub
- URL: https://github.com/gschier/golang-link-fetcher
- Owner: gschier
- Created: 2015-04-26T05:49:30.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-04-26T05:57:15.000Z (over 9 years ago)
- Last Synced: 2024-10-10T05:38:08.391Z (2 months ago)
- Language: Go
- Size: 133 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# golang-link-fetcher
A CLI to crawl a list of URLs and print out the set of unique links discovered## Usage
```bash
# Using the go cli
go run main.go http://schier.co http://blog.schier.co
```## Development
If you want to play around with the code, here's how you make changes
```bash
# Fetch dependancies
go get# Build a binary
go build main.go# Run the binary
./main ...
```## Info
This code goes with a [tutorial]() on my blog.