Awesome Go

goid

CategoryUUID
SubcategoryUUID
Stars0

Generate and Parse RFC4122 compliant V4 UUIDs

About goid

Goid

A Go package to generate V4 UUIDs

Go Report Card cover.run Go Docs

Documentation

The API docs can be viewed here or generated with godoc.

Usage

An example of generating a v4 UUID and outputting it

import (
    "fmt"
    "github.com/jakehl/goid"
)

func main() {
    v4UUID := goid.NewV4UUID()
    fmt.Println(v4UUID)
}

Todo

  • Add optimised bulk UUID generation

References

The following sources were referenced during the development of this project

Frequently Asked Questions

What is goid?

goid is a UUID library for the Go programming language. Generate and Parse RFC4122 compliant V4 UUIDs

How do I install goid?

Install goid with the Go module system using `go get jakehl/goid`. Check the repository for the current installation instructions.

What category does goid belong to?

goid is listed under UUID, specifically UUID.

← Back to UUID