Popularity
2.7
Declining
Activity
0.0
Stable
40
5
4

Programming language: Go
License: MIT License
Tags: Miscellaneous    

goid alternatives and similar packages

Based on the "Miscellaneous" category.
Alternatively, view goid alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of goid or a related project?

Add another 'Miscellaneous' Package

README

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