wuzz

(★ 10,718)

HTTP 인스펙션을 위한 대화형 CLI 도구

파일 탐색기

  • .dockerignore
  • .gitignore
  • .travis.yml
  • _config.yml
  • CHANGELOG.md
  • commands.go
  • docker-entrypoint.sh
  • Dockerfile
  • go.mod
  • go.sum
  • keys.go
  • LICENSE
  • README.md
  • request-headers.go
  • sample-config.toml
  • status-line.go
  • wuzz.go
  • wuzz_test.go

# 설치 가이드

go
사전 준비물
  • Go >= 1.10

설치 및 실행 절차

go get github.com/asciimoo/wuzz

Go를 사용하여 wuzz 패키지를 다운로드하고 설치합니다.

$GOPATH/bin/wuzz --help

설치된 wuzz 도구의 도움말을 출력하여 정상 실행을 확인합니다.

핵심 명령어

go get github.com/asciimoo/wuzz

wuzz 프로젝트를 소스 코드로부터 빌드 및 설치합니다.

wuzz https://httpbin.org/get

인터랙티브 HTTP 검사 도구를 실행합니다.

Linux 환경에서는 $XDG_CONFIG_HOME/wuzz/config.toml, 기타 플랫폼에서는 ~/.wuzz/config.toml 경로에 설정 파일을 생성하여 기본 설정을 재정의할 수 있습니다.

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

go get

설명 보기 ▼

Add a dependency package, or download packages in legacy GOPATH mode.
Note: `./...` is a Go package pattern understood by Go tooling. It matches the current package and all packages recursively under the current directory.

go get {{example.com/pkg}}

Add a specified package to `go.mod` in module-mode or install the package in GOPATH-mode:

go get {{example.com/pkg}}@{{v1.2.3}}

Modify the package with a given version in module-aware mode:

go get {{example.com/pkg}}@{{none}}

Remove a specified package:

🔍

nix-shell

설명 보기 ▼

`nix-shell`은 같은 이름의 여러 명령을 참조할 수 있습니다.

nix-shell

기존 셸에 대한 문서를 참조하세요:

nix-shell --run "{{command}} {{argument1 argument2 ...}}"

nix3 셸에 대한 문서 보기:

nix-shell {{default.nix}}

Start with expression in `default.nix` in the current directory:

🔍

apk

설명 보기 ▼

Alpine Linux 패키지 관리 도구.
더 많은 정보: <https://wiki.alpinelinux.org/wiki/Alpine_Package_Keeper>.

apk upgrade {{[-U|--update-cache]}}

모든 원격 저장소에서 저장소 색인 업데이트:

apk update

새 패키지 설치:

apk add {{package}}

패키지 제거:

🔍

apt install

설명 보기 ▼

Install packages for Debian-based distributions.

sudo apt install {{package}}

Install a package, or update it to the latest version:

sudo apt install {{[-V|--verbose-versions]}} {{package}}

Display verbose package version information during installation or update:

🔍

scoop bucket

설명 보기 ▼

Manage buckets: Git repositories containing files which describe how scoop installs applications.
If Scoop doesn't know where the bucket is located its repository location must be specified.

scoop bucket list

List all buckets currently in use:

scoop bucket known

List all known buckets:

scoop bucket add {{name}}

Add a known bucket by its name:

🔍

scoop

설명 보기 ▼

Scoop 패키지 관리자.
`bucket`과 같은 하위 명령어는 자체 문서를 가지고 있습니다.
더 많은 정보: <https://github.com/ScoopInstaller/Scoop/wiki/Commands>.

scoop install {{package}}

패키지 설치:

scoop uninstall {{package}}

패키지 제거:

scoop update --all

모든 설치된 패키지 업데이트:

// repository documentation