govalid

(★ 269)

Up to 45x faster. Auto generate type-safe validation code for structs based on markers.

파일 탐색기

  • .gitignore
  • .golangci.yaml
  • .goreleaser.yml
  • .tagpr
  • CHANGELOG.md
  • CLAUDE.md
  • codecov.yml
  • CODEOWNERS
  • CONTRIBUTING.md
  • go.mod
  • go.sum
  • lefthook.yaml
  • LICENSE
  • Makefile
  • MARKERS.md
  • README.md
  • validator.go
  • version.go

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

go install

설명 보기 ▼

Compile and install packages named by the import paths.

go install

Compile and install the current package:

go install {{path/to/package}}

Compile and install a specific local package:

go install {{golang.org/x/tools/gopls}}@{{latest}}

Install the latest version of a program, ignoring `go.mod` in the current directory:

🔍

uuid

설명 보기 ▼

범용 고유 식별자(UUID) 생성 및 디코드.
관련 항목: `uuidgen`.
더 많은 정보: <https://manned.org/uuid>.

uuid

UUIDv1 생성 (시간 및 시스템의 하드웨어 주소 기반, 사용 가능한 경우):

uuid -v 4

UUIDv4 생성 (무작위 데이터 기반):

uuid -v 4 -n {{number_of_uuids}}

여러 개의 UUIDv4를 한 번에 생성:

// repository documentation