wuzz

(★ 10,718)

Interactive cli tool for HTTP inspection

File Explorer

  • .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

# Installation Guide

go
Prerequisites
  • Go >= 1.10

Setup Steps

go get github.com/asciimoo/wuzz

Download and install the wuzz package using Go.

$GOPATH/bin/wuzz --help

Verify the installation by running the wuzz help command.

Key Commands

go get github.com/asciimoo/wuzz

Build and install the wuzz project from source.

wuzz https://httpbin.org/get

Run the interactive HTTP inspection tool.

You can override default settings by placing a configuration file at $XDG_CONFIG_HOME/wuzz/config.toml on Linux or ~/.wuzz/config.toml on other platforms.

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

go get

View Details ▼

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

View Details ▼

Start an interactive shell based on a Nix expression.
See also: `nix shell.3`.

nix-shell

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

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

Run shell command in non-interactive shell and exit:

nix-shell {{default.nix}}

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

🔍

apk

View Details ▼

Alpine Linux package management tool.

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

Update repository indexes and upgrade all packages:

apk update

Only update repository indexes:

apk add {{package}}

Install a new package:

🔍

apt install

View Details ▼

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

View Details ▼

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

View Details ▼

The Scoop package manager.
Some subcommands such as `bucket` have their own usage documentation.

scoop install {{package}}

Install a package:

scoop uninstall {{package}}

Remove a package:

scoop update --all

Update all installed packages:

// repository documentation