github.com/google/uuid

Google UUID

Package uuid generates and inspects UUIDs.

70

Decision Signals

Health score 70/100, confidence 80/100.

Review
Maintenance 38
Adoption 92
Security 70
Maturity 100
Developer DX 67
Confidence 80

Install

go get github.com/google/uuid

Package Data

updated May 31, 2026
Latest versionv1.6.0
Imported by0 packages
Stars6.1K
Forks422
Last activity1 years ago
Latest releasev1.6.0 (2 years ago)
LicenseBSD-3-Clause
Known vuln records0

API Surface

0 symbols
SymbolKindSynopsis
No symbol preview available from pkg.go.dev for this refresh.

Similar Packages

Go UUID Libraries

#1 uuid

Package uuid provides implementations of the Universally Unique Identifier (UUID), as specified in RFC-4122 and the Peabody RFC Draft (revision 03).

Go UUID Libraries 0 stars 22.7K imported-by 80% confidence
58

#2 go.uuid

Package uuid provides implementation of Universally Unique Identifier (UUID).

Go UUID Libraries 0 stars 32.8K imported-by 75% confidence
57

#3 ksuid

K-Sortable Globally Unique IDs

Go UUID Libraries 0 stars 1.8K imported-by 75% confidence
54

#4 violetear

Package violetear - HTTP router Basic example: package main import ( "fmt" "github.com/nbari/violetear" "log" "net/http" ) func catchAll(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, r.URL.Path[1:]) } func helloWorld(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, r.URL.Path[1:]) } func handleUUID(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, r.URL.Path[1:]) } func main() { router := violetear.New() router.LogRequests = true router.RequestID = "REQUEST_LOG_ID" router.AddRegex(":uuid", `[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}`) router.HandleFunc("*", catchAll) router.HandleFunc("/hello", helloWorld, "GET,HEAD") router.HandleFunc("/root/:uuid/item", handleUUID, "POST,PUT") srv := &http.Server{ Addr: ":8080", Handler: router, ReadTimeout: 5 * time.Second, WriteTimeout: 7 * time.Second, MaxHeaderBytes: 1 << 20, } log.Fatal(srv.ListenAndServe()) }

Go UUID Libraries 0 stars 87 imported-by 80% confidence
49

#5 uuid

Package uuid implements generation and manipulation of UUIDs (v1 defined in RFC 4122).

Go UUID Libraries 0 stars 5 imported-by 80% confidence
46