mirror of
https://github.com/avelino/awesome-go.git
synced 2025-01-31 04:48:53 +00:00
remove: terraform-validator (#4649)
This commit is contained in:
parent
359cade5b1
commit
d45bed4ec2
12
README.md
12
README.md
@ -741,6 +741,7 @@ _Data stores with expiring records, in-memory distributed data stores, or in-mem
|
||||
- [vitess](https://github.com/youtube/vitess) - vitess provides servers and tools which facilitate scaling of MySQL databases for large scale web services.
|
||||
|
||||
### SQL Query Builders
|
||||
|
||||
_Libraries for building and using SQL._
|
||||
|
||||
- [bqb](https://github.com/nullism/bqb) - Lightweight and easy to learn query builder.
|
||||
@ -1473,7 +1474,7 @@ _Libraries for generating and working with log files._
|
||||
- [slf4g](https://github.com/echocat/slf4g) - Simple Logging Facade for Golang: Simple structured logging; but powerful, extendable and customizable, with huge amount of learnings from decades of past logging frameworks.
|
||||
- [slog](https://github.com/gookit/slog) - Lightweight, configurable, extensible logger for Go.
|
||||
- [spew](https://github.com/davecgh/go-spew) - Implements a deep pretty printer for Go data structures to aid in debugging.
|
||||
- [sqldb-logger](https://github.com/simukti/sqldb-logger) - A logger for Go SQL database driver without modify existing *sql.DB stdlib usage.
|
||||
- [sqldb-logger](https://github.com/simukti/sqldb-logger) - A logger for Go SQL database driver without modify existing \*sql.DB stdlib usage.
|
||||
- [stdlog](https://github.com/alexcesaro/log) - Stdlog is an object-oriented library providing leveled logging. It is very useful for cron jobs.
|
||||
- [structy/log](https://github.com/structy/log) - A simple to use log system, minimalist but with features for debugging and differentiation of messages.
|
||||
- [tail](https://github.com/hpcloud/tail) - Go package striving to emulate the features of the BSD tail program.
|
||||
@ -2092,7 +2093,7 @@ _Libraries that are used to help make your application more secure._
|
||||
- [nacl](https://github.com/kevinburke/nacl) - Go implementation of the NaCL set of API's.
|
||||
- [optimus-go](https://github.com/pjebs/optimus-go) - ID hashing and Obfuscation using Knuth's Algorithm.
|
||||
- [passlib](https://github.com/hlandau/passlib) - Futureproof password hashing library.
|
||||
- [secret](https://github.com/rsjethani/secret) - Prevent your secrets from leaking into logs, std* etc.
|
||||
- [secret](https://github.com/rsjethani/secret) - Prevent your secrets from leaking into logs, std\* etc.
|
||||
- [secure](https://github.com/unrolled/secure) - HTTP middleware for Go that facilitates some quick security wins.
|
||||
- [secureio](https://github.com/xaionaro-go/secureio) - An keyexchanging+authenticating+encrypting wrapper and multiplexer for `io.ReadWriteCloser` based on XChaCha20-poly1305, ECDH and ED25519.
|
||||
- [simple-scrypt](https://github.com/elithrar/simple-scrypt) - Scrypt package with a simple, obvious API and automatic cost calibration built-in.
|
||||
@ -2204,6 +2205,7 @@ _Libraries and tools for templating and lexing._
|
||||
_Libraries for testing codebases and generating test data._
|
||||
|
||||
- Testing Frameworks
|
||||
|
||||
- [apitest](https://apitest.dev) - Simple and extensible behavioural testing library for REST based services or HTTP handlers that supports mocking external http calls and rendering of sequence diagrams.
|
||||
- [assert](https://github.com/go-playground/assert) - Basic Assertion Library used along side native go testing, with building blocks for custom assertions.
|
||||
- [badio](https://github.com/cavaliercoder/badio) - Extensions to Go's `testing/iotest` package.
|
||||
@ -2269,6 +2271,7 @@ _Libraries for testing codebases and generating test data._
|
||||
- [wstest](https://github.com/posener/wstest) - Websocket client for unit-testing a websocket http.Handler.
|
||||
|
||||
- Mock
|
||||
|
||||
- [counterfeiter](https://github.com/maxbrunsfeld/counterfeiter) - Tool for generating self-contained mock objects.
|
||||
- [genmock](https://gitlab.com/so_literate/genmock) - Go mocking system with code generator for building calls of the interface methods.
|
||||
- [go-localstack](https://github.com/elgohr/go-localstack) - Tool for using localstack in AWS testing.
|
||||
@ -2287,11 +2290,13 @@ _Libraries for testing codebases and generating test data._
|
||||
- [timex](https://github.com/cabify/timex) - A test-friendly replacement for the native `time` package.
|
||||
|
||||
- Fuzzing and delta-debugging/reducing/shrinking.
|
||||
|
||||
- [go-fuzz](https://github.com/dvyukov/go-fuzz) - Randomized testing system.
|
||||
- [gofuzz](https://github.com/google/gofuzz) - Library for populating go objects with random values.
|
||||
- [Tavor](https://github.com/zimmski/tavor) - Generic fuzzing and delta-debugging framework.
|
||||
|
||||
- Selenium and browser control tools.
|
||||
|
||||
- [cdp](https://github.com/mafredri/cdp) - Type-safe bindings for the Chrome Debugging Protocol that can be used with browsers or other debug targets that implement it.
|
||||
- [chromedp](https://github.com/knq/chromedp) - a way to drive/test Chrome, Safari, Edge, Android Webviews, and other browsers supporting the Chrome Debugging Protocol.
|
||||
- [ggr](https://github.com/aerokube/ggr) - a lightweight server that routes and proxies Selenium WebDriver requests to multiple Selenium hubs.
|
||||
@ -2712,7 +2717,6 @@ _Libraries for validation._
|
||||
- [govalidator](https://github.com/thedevsaddam/govalidator) - Validate Golang request data with simple rules. Highly inspired by Laravel's request validation.
|
||||
- [jio](https://github.com/faceair/jio) - jio is a json schema validator similar to [joi](https://github.com/hapijs/joi).
|
||||
- [ozzo-validation](https://github.com/go-ozzo/ozzo-validation) - Supports validation of various data types (structs, strings, maps, slices, etc.) with configurable and extensible validation rules specified in usual code constructs instead of struct tags.
|
||||
- [terraform-validator](https://github.com/thazelart/terraform-validator) - A norms and conventions validator for Terraform.
|
||||
- [validate](https://github.com/gookit/validate) - Go package for data validation and filtering. support validate Map, Struct, Request(Form, JSON, url.Values, Uploaded Files) data and more features.
|
||||
- [validate](https://github.com/gobuffalo/validate) - This package provides a framework for writing validations for Go applications.
|
||||
- [validator](https://github.com/go-playground/validator) - Go Struct and Field validation, including Cross Field, Cross Struct, Map, Slice and Array diving.
|
||||
@ -3346,7 +3350,7 @@ _Where to discover new Go libraries._
|
||||
- [Utah Go User Group](https://www.meetup.com/utahgophers/)
|
||||
- [Women Who Go - San Francisco, CA](https://www.meetup.com/Women-Who-Go/)
|
||||
|
||||
*Add the group of your city/country here (send **PR**)*
|
||||
_Add the group of your city/country here (send **PR**)_
|
||||
|
||||
**[⬆ back to top](#contents)**
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user