sip

(β˜… 28)

Serve Bubble Tea apps through the browser - Drinking tea through the browser 🍡

File Explorer

ZIP Download
  • .gitignore
  • AGENTS.md
  • cert.go
  • certstore.go
  • certstore_test.go
  • clipboard_test.go
  • cmd_session.go
  • cmd_unix.go
  • cmd_windows.go
  • config_context.go
  • connecterror.go
  • go.mod
  • go.sum
  • handlers.go
  • identity.go
  • kittygfx.go
  • kittygfx_test.go
  • LICENSE
  • lifecycle_test.go
  • middleware.go
  • origin_test.go
  • README.md
  • resize_throttle.go
  • run_js.go
  • run_native.go
  • server.go
  • server_test.go
  • session.go
  • session_unix.go
  • session_windows.go
  • sip.go

# 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:

πŸ”

go install

View Details β–Ό

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:

πŸ”

go run

View Details β–Ό

Compile and run Go code without saving a binary.

go run {{path/to/file.go}}

Run a Go file:

go run {{path/to/package}}

Run a main Go package:

πŸ”

set-clipboard

View Details β–Ό

PowerShell command to set content to clipboard.
Note: `scb` can be used as an alias for `Set-Clipboard`.

Set-Clipboard -Value "{{text}}"

Copy text to the clipboard:

Set-Clipboard -Value @("{{text 1}}", "{{text 2}}", "{{text 3}}")

Copy multiple texts to clipboard separated by new line:

Set-Clipboard -Path "{{path\to\files_or_directories}}"

Copy files or directories to clipboard:

# Project Badges

// repository documentation