Skip to content

momus is a web scraper made to health check all the internal links inside a given site

License

Notifications You must be signed in to change notification settings

fagnercarvalho/momus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

momus

GoDoc

momus is a web scraper written in Go made to health check all the internal links inside a given site.

Quick Start

package main

import (
	"fmt"
	"github.com/fagnercarvalho/momus"
)

func main() {
	healthChecker := momus.New(&momus.Config{OnlyDeadLinks: false})
	links := healthChecker.GetLinks("http://fagner.co")

	for _, linkResult := range links {
		fmt.Printf("%d | %s \n", linkResult.StatusCode, linkResult.Link)
	}
}

Example

http://www.github.com/fagnercarvalho/momus-example

About

momus is a web scraper made to health check all the internal links inside a given site

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages