https://github.com/lawzava/go-tld
Minimalistic library for keeping up to date with TLD checks.
https://github.com/lawzava/go-tld
check go golang hacktoberfest tld validation
Last synced: 4 months ago
JSON representation
Minimalistic library for keeping up to date with TLD checks.
- Host: GitHub
- URL: https://github.com/lawzava/go-tld
- Owner: lawzava
- License: mit
- Created: 2021-01-23T16:27:48.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-11-30T20:09:54.000Z (6 months ago)
- Last Synced: 2025-12-03T04:29:17.689Z (6 months ago)
- Topics: check, go, golang, hacktoberfest, tld, validation
- Language: Go
- Homepage: https://pkg.go.dev/github.com/lawzava/go-tld
- Size: 45.9 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README

[](https://github.com/lawzava/go-tld/releases)
[](https://goreportcard.com/report/github.com/lawzava/go-tld)
[](https://coveralls.io/github/lawzava/go-tld?branch=main)
[](https://pkg.go.dev/github.com/lawzava/go-tld)
# go-tld
Minimalistic library for keeping up to date with TLD checks.
## Installation
```
go get github.com/lawzava/go-tld
```
## Usage
```go
package main
import "github.com/lawzava/go-tld"
func main() {
tld.IsValid("com") // true
tld.IsValid("xir") // false
}
```