https://github.com/caffeines/username-blacklist
Username Blacklist checks blocklist of words, that you might not want to grant as a username.
https://github.com/caffeines/username-blacklist
username-blacklist username-checker
Last synced: about 1 month ago
JSON representation
Username Blacklist checks blocklist of words, that you might not want to grant as a username.
- Host: GitHub
- URL: https://github.com/caffeines/username-blacklist
- Owner: caffeines
- License: mpl-2.0
- Created: 2023-02-17T11:01:49.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-17T21:06:44.000Z (about 2 years ago)
- Last Synced: 2025-01-28T02:43:35.076Z (3 months ago)
- Topics: username-blacklist, username-checker
- Language: Go
- Homepage: https://github.com/caffeines/username-blacklist
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# username-blacklist
[](https://pkg.go.dev/github.com/caffeines/username-blacklist)
[](https://github.com/caffeines/username-blacklist/actions/workflows/go.yml)
[](https://goreportcard.com/report/github.com/caffeines/username-blacklist)
[](https://raw.githubusercontent.com/caffeines/username-blacklist/master/LICENSE)**Username Blacklist** checks usernames, that you might not want to grant as a username.
## Installation
```sh
go get github.com/caffeines/username-blacklist
```## Usage
```go
package mainimport (
"fmt"
"github.com/caffeines/username-blacklist"
)func main() {
blacklisted := username_blacklist.Blacklisted("admin")
fmt.Println("blacklisted:", blacklisted)
}
```## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.Please make sure to update tests as appropriate.
## License
[](https://raw.githubusercontent.com/caffeines/username-blacklist/master/LICENSE)This project is released under the MPL2.0 License. See the bundled LICENSE file for details.
## Credits
- [github.com/marteinn/The-Big-Username-Blacklist](https://github.com/marteinn/The-Big-Username-Blacklist)