JSON Parser ported from TypeScript to Go 1.25.0
MIT
go build ./...To lint your Go code for common issues, use golangci-lint:
golangci-lint run ./...go fmt ./...go test ./...To measure test coverage:
go test -coverprofile="coverage.out" ./...
go tool cover -html="coverage.out" -o="coverage.html"go run cmd/cli/main.goTo start the Echo API server:
go run cmd/api-echo/main.goTo start the Gin API server:
go run cmd/api-gin/main.goTo start the Fiber API server:
go run cmd/api-fiber/main.goYou can test either Gin and Echo API endpoints using the REST Client extension for VSCode.
- Install the REST Client extension.
- Open any
.restfile intestdata/. - Click "Send Request" above the desired request to test the API.