https://github.com/goombaio/namegenerator
A random name generator (for projects, servers, cluster nodes, etc ...) implementation in Golang.
https://github.com/goombaio/namegenerator
cluster-node generator golang golang-library golang-package name project-name random server-name
Last synced: 4 months ago
JSON representation
A random name generator (for projects, servers, cluster nodes, etc ...) implementation in Golang.
- Host: GitHub
- URL: https://github.com/goombaio/namegenerator
- Owner: goombaio
- License: apache-2.0
- Created: 2018-09-24T06:48:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-09-20T12:59:48.000Z (over 3 years ago)
- Last Synced: 2024-06-18T15:22:25.756Z (almost 2 years ago)
- Topics: cluster-node, generator, golang, golang-library, golang-package, name, project-name, random, server-name
- Language: Go
- Homepage:
- Size: 22.5 KB
- Stars: 42
- Watchers: 4
- Forks: 18
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# namegenerator
A random name generator (for projects, servers, cluster nodes, etc ...)
implementation in Golang.
## Badges
[![License][License-Image]][License-URL]
[![CircleCI Status][CircleCI-Image]][CircleCI-URL]
[![Coverage Report][Coverage-Image]][Coverage-URL]
[![Go Report Card][GoReportCard-Image]][GoReportCard-URL]
[![CII Best Practices][CII-Image]][CII-URL]
[![GoDoc][GoDoc-Image]][GoDoc-URL]
## Install
```bash
go get github.com/goombaio/namegenerator
```
You can also update an already installed version:
```bash
go get -u github.com/goombaio/namegenerator
```
## Example of use
```go
package main
import (
"github.com/goombaio/namegenerator"
)
func main() {
seed := time.Now().UTC().UnixNano()
nameGenerator := namegenerator.NewNameGenerator(seed)
name := nameGenerator.Generate()
fmt.Println(name)
}
```
## License
Copyright (c) 2018 Goomba project Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
[License-Image]: https://img.shields.io/badge/License-Apache-blue.svg
[License-URL]: http://opensource.org/licenses/Apache
[CircleCI-Image]: https://circleci.com/gh/goombaio/namegenerator.svg?style=svg
[CircleCI-URL]: https://circleci.com/gh/goombaio/namegenerator
[Coverage-Image]: https://codecov.io/gh/goombaio/namegenerator/branch/master/graph/badge.svg
[Coverage-URL]: https://codecov.io/gh/goombaio/namegenerator
[GoReportCard-Image]: https://goreportcard.com/badge/github.com/goombaio/namegenerator
[GoReportCard-URL]: https://goreportcard.com/report/github.com/goombaio/namegenerator
[CII-Image]: https://bestpractices.coreinfrastructure.org/projects/2237/badge
[CII-URL]: https://bestpractices.coreinfrastructure.org/projects/2237
[GoDoc-Image]: https://godoc.org/github.com/goombaio/namegenerator?status.svg
[GoDoc-URL]: http://godoc.org/github.com/goombaio/namegenerator