Ecosyste.ms: Packages

An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

Top 0.5% on proxy.golang.org
Top 0.1% dependent packages on proxy.golang.org
Top 0.2% dependent repos on proxy.golang.org
Top 1.3% forks on proxy.golang.org
Top 0.1% docker downloads on proxy.golang.org

proxy.golang.org : github.com/rivo/tview

Package tview implements rich widgets for terminal based user interfaces. The widgets provided with this package are useful for data exploration and data entry. The package implements the following widgets: The package also provides Application which is used to poll the event queue and draw widgets on screen. The following is a very basic example showing a box with the title "Hello, world!": First, we create a box primitive with a border and a title. Then we create an application, set the box as its root primitive, and run the event loop. The application exits when the application's Application.Stop function is called or when Ctrl-C is pressed. You will find more demos in the "demos" subdirectory. It also contains a presentation (written using tview) which gives an overview of the different widgets and how they can be used. Throughout this package, styles are specified using the tcell.Style type. Styles specify colors with the tcell.Color type. Functions such as tcell.GetColor, tcell.NewHexColor, and tcell.NewRGBColor can be used to create colors from W3C color names or RGB values. The tcell.Style type also allows you to specify text attributes such as "bold" or "underline" or a URL which some terminals use to display hyperlinks. Almost all strings which are displayed may contain style tags. A style tag's content is always wrapped in square brackets. In its simplest form, a style tag specifies the foreground color of the text. Colors in these tags are W3C color names or six hexadecimal digits following a hash tag. Examples: A style tag changes the style of the characters following that style tag. There is no style stack and no nesting of style tags. Style tags are used in almost everything from box titles, list text, form item labels, to table cells. In a TextView, this functionality has to be switched on explicitly. See the TextView documentation for more information. A style tag's full format looks like this: Each of the four fields can be left blank and trailing fields can be omitted. (Empty square brackets "[]", however, are not considered style tags.) Fields that are not specified will be left unchanged. A field with just a dash ("-") means "reset to default". You can specify the following flags to turn on certain attributes (some flags may not be supported by your terminal): Use uppercase letters to turn off the corresponding attribute, for example, "B" to turn off bold. Uppercase letters have no effect if the attribute was not previously set. Setting a URL allows you to turn a piece of text into a hyperlink in some terminals. Specify a dash ("-") to specify the end of the hyperlink. Hyperlinks must only contain single-byte characters (e.g. ASCII) and they may not contain bracket characters ("[" or "]"). Examples: In the rare event that you want to display a string such as "[red]" or "[#00ff1a]" without applying its effect, you need to put an opening square bracket before the closing square bracket. Note that the text inside the brackets will be matched less strictly than region or colors tags. I.e. any character that may be used in color or region tags will be recognized. Examples: You can use the Escape() function to insert brackets automatically where needed. When primitives are instantiated, they are initialized with colors taken from the global Styles variable. You may change this variable to adapt the look and feel of the primitives to your preferred style. Note that most terminals will not report information about their color theme. This package therefore does not support using the terminal's color theme. The default style is a dark theme and you must change the Styles variable to switch to a light (or other) theme. This package supports all unicode characters supported by your terminal. If your terminal supports mouse events, you can enable mouse support for your application by calling Application.EnableMouse. Note that this may interfere with your terminal's default mouse behavior. Mouse support is disabled by default. Many functions in this package are not thread-safe. For many applications, this is not an issue: If your code makes changes in response to key events, the corresponding callback function will execute in the main goroutine and thus will not cause any race conditions. (Exceptions to this are documented.) If you access your primitives from other goroutines, however, you will need to synchronize execution. The easiest way to do this is to call Application.QueueUpdate or Application.QueueUpdateDraw (see the function documentation for details): One exception to this is the io.Writer interface implemented by TextView. You can safely write to a TextView from any goroutine. See the TextView documentation for details. You can also call Application.Draw from any goroutine without having to wrap it in Application.QueueUpdate. And, as mentioned above, key event callbacks are executed in the main goroutine and thus should not use Application.QueueUpdate as that may lead to deadlocks. It is also not necessary to call Application.Draw from such callbacks as it will be called automatically. All widgets listed above contain the Box type. All of Box's functions are therefore available for all widgets, too. Please note that if you are using the functions of Box on a subclass, they will return a *Box, not the subclass. This is a Golang limitation. So while tview supports method chaining in many places, these chains must be broken when using Box's functions. Example: You will need to call Box.SetBorder separately: All widgets also implement the Primitive interface. The tview package's rendering is based on version 2 of https://github.com/gdamore/tcell. It uses types and constants from that package (e.g. colors, styles, and keyboard values).

Registry - Source - Documentation - JSON
purl: pkg:golang/github.com/rivo/tview
Keywords: golang, terminal-based, user-interface
License: MIT
Latest release: 4 months ago
First release: almost 6 years ago
Namespace: github.com/rivo
Dependent packages: 1,094
Dependent repositories: 2,885
Stars: 9,699 on GitHub
Forks: 513 on GitHub
Docker dependents: 742
Docker downloads: 1,963,452,944
Total Commits: 521
Committers: 74
Average commits per author: 7.041
Development Distribution Score (DDS): 0.516
More commit stats: commits.ecosyste.ms
See more repository details: repos.ecosyste.ms
Funding links: https://github.com/sponsors/rivo
Last synced: about 16 hours ago

Top 0.7% on proxy.golang.org
github.com/antonmedv/expr v1.16.0 πŸ’°
Expression language and expression evaluation for Go
85 versions - Latest release: 4 months ago - 1,204 dependent packages - 1,640 dependent repositories - 3,574 stars on GitHub
Top 0.2% on proxy.golang.org
github.com/minio/minio v0.0.0-20240125204546-74851834c0e0
Multi-Cloud :cloud: Object Storage
1,033 versions - Latest release: 4 months ago - 260 dependent packages - 161 dependent repositories - 38,080 stars on GitHub
Top 0.4% on proxy.golang.org
github.com/cli/cli/v2 v2.49.2
GitHub’s official command line tool
137 versions - Latest release: 6 days ago - 196 dependent packages - 25 dependent repositories - 32,096 stars on GitHub
Top 0.8% on proxy.golang.org
github.com/minio/mc v0.0.0-20240123050219-ffa7a67bcf93
Simple | Fast tool to manage MinIO clusters :cloud:
288 versions - Latest release: 4 months ago - 93 dependent packages - 105 dependent repositories - 2,400 stars on GitHub
Top 0.9% on proxy.golang.org
github.com/buildpacks/pack v0.32.1
CLI for building apps using Cloud Native Buildpacks
85 versions - Latest release: 6 months ago - 74 dependent packages - 111 dependent repositories - 1,938 stars on GitHub
Top 3.1% on proxy.golang.org
github.com/navidys/tvxwidgets v0.5.0
tvxwidgets provides extra widgets for tview
7 versions - Latest release: 5 months ago - 52 dependent packages - 84 dependent repositories - 53 stars on GitHub
Top 0.8% on proxy.golang.org
github.com/GoogleContainerTools/skaffold v1.39.18
Easy and Repeatable Kubernetes Development
137 versions - Latest release: 9 months ago - 37 dependent packages - 12 dependent repositories - 13,795 stars on GitHub
Top 2.7% on proxy.golang.org
github.com/derailed/tview v0.8.3 πŸ’°
Package tview implements rich widgets for terminal based user interfaces. The widgets provided wi...
60 versions - Latest release: 4 months ago - 33 dependent packages - 49 dependent repositories - 58 stars on GitHub
Top 2.5% on proxy.golang.org
github.com/digineo/go-ping v1.0.1
A simple ping library using ICMP echo requests.
2 versions - Latest release: over 3 years ago - 33 dependent packages - 23 dependent repositories - 195 stars on GitHub
Top 1.9% on proxy.golang.org
github.com/iotaledger/goshimmer v0.9.8
Prototype implementation of IOTA 2.0
65 versions - Latest release: over 1 year ago - 27 dependent packages - 14 dependent repositories - 380 stars on GitHub
Top 1.3% on proxy.golang.org
github.com/minio/console v0.45.0
Simple UI for MinIO Object Storage :abacus:
181 versions - Latest release: 4 months ago - 26 dependent packages - 58 dependent repositories - 623 stars on GitHub
Top 2.4% on proxy.golang.org
github.com/NethermindEth/juno v0.11.7
Starknet client implementation.
52 versions - Latest release: 24 days ago - 23 dependent packages - 10 dependent repositories - 164 stars on GitHub
Top 2.4% on proxy.golang.org
github.com/holiman/goevmlab v0.0.0-20240124094801-73195c2b9e68
Evm laboratory
56 versions - Latest release: 4 months ago - 21 dependent packages - 22 dependent repositories - 165 stars on GitHub
Top 1.3% on proxy.golang.org
github.com/talos-systems/talos v1.7.1
Talos Linux is a modern Linux distribution built for Kubernetes.
286 versions - Latest release: 18 days ago - 21 dependent packages - 16 dependent repositories - 3,705 stars on GitHub
Top 1.2% on proxy.golang.org
github.com/oam-dev/kubevela v1.9.9
189 versions - Latest release: 4 months ago - 16 dependent packages - 27 dependent repositories
Top 1.1% on proxy.golang.org
github.com/derailed/k9s v0.32.4 πŸ’°
🐢 Kubernetes CLI To Manage Your Clusters In Style!
143 versions - Latest release: 2 months ago - 14 dependent packages - 4 dependent repositories - 20,057 stars on GitHub
Top 3.1% on proxy.golang.org
github.com/abdfnx/resto v0.1.6
πŸ”— a CLI app can send pretty HTTP & API requests with TUI
7 versions - Latest release: over 2 years ago - 13 dependent packages - 11 dependent repositories - 137 stars on GitHub
Top 3.8% on proxy.golang.org
github.com/pgavlin/femto v0.0.0-20201224065653-0c9d20f9cac4
An editor component for tview. Derived from the micro editor.
1 version - Latest release: over 3 years ago - 12 dependent packages - 18 dependent repositories - 40 stars on GitHub
Top 1.4% on proxy.golang.org
github.com/juju/juju v0.0.0-20240123223800-1a9ae5d4ab7a
Package juju is devops distilled. Project homepage: https://github.com/juju/juju For more infor...
502 versions - Latest release: 4 months ago - 12 dependent packages - 13 dependent repositories - 2,099 stars on GitHub
Top 3.7% on proxy.golang.org
github.com/strangelove-ventures/interchaintest/v7 v7.0.0
e2e testing framework for the interchain
131 versions - Latest release: 7 months ago - 12 dependent packages - 8 dependent repositories - 115 stars on GitHub
Top 2.4% on proxy.golang.org
github.com/buildpack/pack v0.32.1
CLI for building apps using Cloud Native Buildpacks
85 versions - Latest release: 6 months ago - 11 dependent packages - 1 dependent repositories - 1,938 stars on GitHub
github.com/sshelll/sinfra v0.0.0-20231014065050-681ad787648b
8 versions - Latest release: 7 months ago - 9 dependent packages - 1 dependent repositories - 0 stars on GitHub
Top 2.7% on proxy.golang.org
github.com/hofstadter-io/hof v0.6.8 πŸ’°
Framework that joins data models, schemas, code generation, and a task engine. Language and techn...
133 versions - Latest release: 9 months ago - 7 dependent packages - 6 dependent repositories - 415 stars on GitHub
Top 3.4% on proxy.golang.org
go.mills.io/saltyim v0.0.0-20230128070719-15a64de82829
Package saltyim is a secure, easy, self-hosted messaging salty.im is an open specification for a...
3 versions - Latest release: over 1 year ago - 7 dependent packages - 1 dependent repositories
github.com/kubemq-hub/builder v0.7.2
23 versions - Latest release: about 3 years ago - 7 dependent packages - 3 dependent repositories - 0 stars on GitHub
Top 1.6% on proxy.golang.org
github.com/GoogleContainerTools/skaffold/v2 v2.11.0
Easy and Repeatable Kubernetes Development
49 versions - Latest release: about 2 months ago - 7 dependent packages - 1 dependent repositories - 13,900 stars on GitHub
Top 1.4% on proxy.golang.org
berty.tech/berty/v2 v2.470.3 πŸ’°
Berty is a secure peer-to-peer messaging app that works with or without internet access, cellular...
1,146 versions - Latest release: 16 days ago - 7 dependent packages - 18 dependent repositories - 6,644 stars on GitHub
Top 3.6% on proxy.golang.org
github.com/abdfnx/botway v0.2.0
πŸ€– Generate, build, handle and deploy your own bot with your favorite language, for Discord, or Te...
45 versions - Latest release: over 1 year ago - 6 dependent packages - 5 dependent repositories - 141 stars on GitHub
Top 4.9% on proxy.golang.org
github.com/Rock-liyi/p2pdb v0.0.14
decentralized, distributed, peer-to-peer relational database for web3
12 versions - Latest release: over 1 year ago - 5 dependent packages - 6 dependent repositories - 21 stars on GitHub
github.com/bhbosman/goUi v0.0.0-20231103204749-88569e2d3f3c
5 versions - Latest release: 7 months ago - 5 dependent packages - 7 dependent repositories - 0 stars on GitHub
Top 3.0% on proxy.golang.org
github.com/cerbos/cerbos v0.36.0
Cerbos is the open core, language-agnostic, scalable authorization solution that makes user permi...
60 versions - Latest release: 11 days ago - 5 dependent packages - 2 dependent repositories - 1,309 stars on GitHub
Top 1.8% on proxy.golang.org
github.com/tilt-dev/tilt v0.33.13
Define your dev environment as code. For microservice apps on Kubernetes.
236 versions - Latest release: 23 days ago - 5 dependent packages - 3 dependent repositories - 6,438 stars on GitHub
Top 2.4% on proxy.golang.org
github.com/profclems/glab v1.22.0 πŸ’°
The GitLab CLI tool. Archived: now officially adopted by GitLab as the official CLI tool and main...
34 versions - Latest release: over 2 years ago - 5 dependent packages - 2 dependent repositories - 2,094 stars on GitHub
Top 4.6% on proxy.golang.org
github.com/gravwell/gravwell/v3 v3.8.31
The main gravwell monorepo for ingesters and ingest code
53 versions - Latest release: 16 days ago - 5 dependent packages - 7 dependent repositories - 23 stars on GitHub
Top 4.9% on proxy.golang.org
github.com/epiclabs-io/winman v0.0.0-20220901164457-3d8c4b3ae090
Package winman implements a basic yet powerful window manager that can be used with tview (github...
1 version - Latest release: over 1 year ago - 5 dependent packages - 2 dependent repositories - 82 stars on GitHub
Top 8.2% on proxy.golang.org
gitlab.com/gitlab-org/cli v1.40.0
A GitLab CLI tool bringing GitLab to your command line
63 versions - Latest release: 25 days ago - 4 dependent packages - 338 stars on GitLab.com
Top 3.6% on proxy.golang.org
github.com/bacalhau-project/bacalhau v1.3.0
Compute over Data framework for public, transparent, and optionally verifiable computation
204 versions - Latest release: about 2 months ago - 4 dependent packages - 1 dependent repositories - 306 stars on GitHub
github.com/darkhz/tview v0.0.0-20240126070054-371cb01c9b7a πŸ’°
Package tview implements rich widgets for terminal based user interfaces. The widgets provided wi...
14 versions - Latest release: 4 months ago - 4 dependent packages - 4 dependent repositories - 2 stars on GitHub
Top 3.2% on proxy.golang.org
github.com/dundee/gdu/v4 v4.11.2
Fast disk usage analyzer with console interface written in Go
27 versions - Latest release: about 3 years ago - 3 dependent packages - 1 dependent repositories - 2,306 stars on GitHub
github.com/stader-labs/ethcli-ui/configuration v0.0.0-20231226083422-f3da49b84cc1
42 versions - Latest release: 5 months ago - 3 dependent packages - 1 dependent repositories - 0 stars on GitHub
github.com/bhbosman/goFxAppManager v0.0.0-20230329105958-8874cb25c628
7 versions - Latest release: about 1 year ago - 3 dependent packages - 5 dependent repositories - 0 stars on GitHub
Top 6.9% on proxy.golang.org
github.com/Evanesco-Labs/WhiteNoise v0.0.0-20211029090557-ec775c8b8684
The implementation of privacy p2p network protocol in Golang
1 version - Latest release: over 2 years ago - 3 dependent packages - 3 dependent repositories - 6 stars on GitHub
github.com/zmnpl/goidgames v0.0.19
A golang wrapper library for the idgames API.
19 versions - Latest release: over 1 year ago - 3 dependent packages - 1 dependent repositories - 2 stars on GitHub
Top 2.3% on proxy.golang.org
github.com/brigadecore/brigade v2.3.1+incompatible
Event-driven scripting for Kubernetes
47 versions - Latest release: about 2 years ago - 3 dependent packages - 4 dependent repositories - 2,382 stars on GitHub
github.com/je4/filesystem/v2 v2.0.12
27 versions - Latest release: 15 days ago - 3 dependent packages - 1 dependent repositories - 0 stars on GitHub
github.com/newclarity/scribeHelpers/ux v0.0.0-20200604000029-dbb313f0fedc
1 version - Latest release: almost 4 years ago - 3 dependent packages - 1 dependent repositories - 0 stars on GitHub
Top 6.1% on proxy.golang.org
code.fbi.h-da.de/cocsn/gosdn v0.0.2
2 versions - Latest release: about 3 years ago - 3 dependent packages
Top 2.9% on proxy.golang.org
github.com/mweagle/Sparta v1.15.0
go microservices, powered by AWS Lambda
20 versions - Latest release: about 4 years ago - 3 dependent packages - 4 dependent repositories - 719 stars on GitHub
Top 3.3% on proxy.golang.org
github.com/filecoin-project/bacalhau v1.3.0
Compute over Data framework for public, transparent, and optionally verifiable computation
204 versions - Latest release: about 2 months ago - 3 dependent packages - 3 dependent repositories - 237 stars on GitHub
Top 2.3% on proxy.golang.org
github.com/bradleyjkemp/grpc-tools v0.2.7 πŸ’°
A suite of gRPC debugging tools. Like Fiddler/Charles but for gRPC.
11 versions - Latest release: over 2 years ago - 3 dependent packages - 27 dependent repositories - 1,125 stars on GitHub
github.com/stader-labs/ethcli-ui/wizard v0.0.0-20231226083422-f3da49b84cc1
43 versions - Latest release: 5 months ago - 3 dependent packages - 1 dependent repositories - 0 stars on GitHub
Top 3.8% on proxy.golang.org
code.cryptowat.ch/cw-sdk-go v1.0.2
Cryptowatch SDK for Golang
1 version - Latest release: over 4 years ago - 3 dependent packages - 5 dependent repositories - 73 stars on GitHub
Top 2.3% on proxy.golang.org
github.com/superfly/flyctl v0.2.55
Command line tools for fly.io services
1,054 versions - Latest release: 3 days ago - 3 dependent packages - 3 dependent repositories - 942 stars on GitHub
Top 3.4% on proxy.golang.org
github.com/lbryio/transcoder v0.19.0
68 versions - Latest release: 3 months ago - 3 dependent packages - 2 dependent repositories
Top 4.9% on proxy.golang.org
github.com/slok/brigadeterm v0.11.1
A simple terminal ui for brigade pipelining system
19 versions - Latest release: about 5 years ago - 3 dependent packages - 3 dependent repositories - 63 stars on GitHub
Top 6.0% on proxy.golang.org
nimona.io v0.19.0
Peer to peer networking library
75 versions - Latest release: over 2 years ago - 2 dependent packages - 4 dependent repositories - 48 stars on GitHub
github.com/blorticus/tpcli v0.3.1
Package tpcli is a golang package (and application) that provides a simple three panel terminal-b...
4 versions - Latest release: over 2 years ago - 2 dependent packages - 1 dependent repositories - 0 stars on GitHub
github.com/bhbosman/goFxApp v0.0.0-20230329130129-3545eed76770
6 versions - Latest release: about 1 year ago - 2 dependent packages - 5 dependent repositories - 0 stars on GitHub
Top 8.1% on proxy.golang.org
github.com/kirill-scherba/teonet-go v0.0.0-20211219220242-2e4d9bc3e8c4
Teonet go implementation
2 versions - Latest release: over 2 years ago - 2 dependent packages - 0 stars on GitHub
Top 6.4% on proxy.golang.org
git.corout.in/golibs/appscenario v1.0.4
4 versions - Latest release: almost 2 years ago - 2 dependent packages
Top 6.4% on proxy.golang.org
gitlab.com/72nd/prfm-ctrl v1.2.2
Control things via OSC.
7 versions - Latest release: about 2 years ago - 2 dependent packages - 0 stars on GitLab.com
Top 3.1% on proxy.golang.org
github.com/Azure/brigade v1.5.0
32 versions - Latest release: over 2 years ago - 2 dependent packages - 6 dependent repositories
Top 3.5% on proxy.golang.org
github.com/solo-io/bumblebee v0.0.14
Get eBPF programs running from the cloud to the kernel in 1 line of bash
15 versions - Latest release: over 1 year ago - 2 dependent packages - 1 dependent repositories - 1,093 stars on GitHub
Top 3.6% on proxy.golang.org
github.com/coder/coder v0.27.3
A tool that provisions remote development environments via Terraform
139 versions - Latest release: 10 months ago - 2 dependent packages - 1 dependent repositories - 4,200 stars on GitHub
Top 3.1% on proxy.golang.org
github.com/dundee/gdu/v5 v5.28.0
Fast disk usage analyzer with console interface written in Go
41 versions - Latest release: 29 days ago - 2 dependent packages - 2 dependent repositories - 2,306 stars on GitHub
Top 8.5% on proxy.golang.org
github.com/uaraven/logview v0.1.0
LogViewer widget for tview/cview
3 versions - Latest release: about 3 years ago - 2 dependent packages - 1 dependent repositories - 6 stars on GitHub
Top 3.5% on proxy.golang.org
github.com/rocket-pool/smartnode v1.13.1
The CLI package for Rocket Pool smart nodes.
97 versions - Latest release: 18 days ago - 2 dependent packages - 2 dependent repositories - 89 stars on GitHub
Top 4.3% on proxy.golang.org
github.com/akitasoftware/akita-cli v1.0.0
The Akita CLI helps you make sense of API traffic. Passively watch API traffic with apidump. Mode...
93 versions - Latest release: 8 months ago - 2 dependent packages - 2 dependent repositories - 261 stars on GitHub
github.com/maahsome/tview v0.0.3
Package tview implements rich widgets for terminal based user interfaces. The widgets provided wi...
3 versions - Latest release: about 2 years ago - 2 dependent packages - 1 dependent repositories - 0 stars on GitHub
Top 4.3% on proxy.golang.org
knative.dev/func v0.41.0
Knative Functions client API and CLI
65 versions - Latest release: 18 days ago - 2 dependent packages - 220 stars on GitHub
Top 2.7% on proxy.golang.org
github.com/apache/plc4x/plc4go v0.0.0-20240123094114-baf214918f72
PLC4X The Industrial IoT adapter
469 versions - Latest release: 4 months ago - 2 dependent packages - 3 dependent repositories - 778 stars on GitHub
github.com/korylprince/ipscan v1.0.4
library and utility for pinging devices with ICMP
5 versions - Latest release: over 2 years ago - 2 dependent packages - 2 dependent repositories - 0 stars on GitHub
github.com/cespedes/tableview v0.1.4
Package tableview provides a way to display a table widget in a terminal, using all the width and...
5 versions - Latest release: about 1 year ago - 2 dependent packages - 1 dependent repositories - 1 stars on GitHub
Top 2.9% on proxy.golang.org
github.com/windmilleng/tilt v0.33.12
Define your dev environment as code. For microservice apps on Kubernetes.
235 versions - Latest release: about 2 months ago - 2 dependent packages - 1 dependent repositories - 6,438 stars on GitHub
Top 5.6% on proxy.golang.org
github.com/bitmaelum/bitmaelum-suite v0.1.1
BitMaelum software suite
8 versions - Latest release: about 3 years ago - 2 dependent packages - 2 dependent repositories - 59 stars on GitHub
Top 5.1% on proxy.golang.org
github.com/strangelove-ventures/ibctest/v3 v3.0.0-20230202003326-aed829083e24
Conformance tests for inter-blockchain communication
18 versions - Latest release: over 1 year ago - 1 dependent package - 2 dependent repositories - 58 stars on GitHub
gitlab.com/titan-minio/console v0.0.10
10 versions - Latest release: over 1 year ago - 1 dependent package - 1 dependent repositories - 0 stars on GitLab.com
github.com/bhbosman/goCommonMarketData v0.0.0-20231103204743-1262d7d12805
6 versions - Latest release: 7 months ago - 1 dependent package - 1 dependent repositories - 0 stars on GitHub
Top 8.9% on proxy.golang.org
github.com/botwayorg/templates v0.1.1
🎲 Botway Templates.
10 versions - Latest release: 9 months ago - 1 dependent package - 1 dependent repositories - 1 stars on GitHub
github.com/diamondburned/tview/v2 v2.4.0
Package tview implements rich widgets for terminal based user interfaces. The widgets provided wi...
10 versions - Latest release: over 4 years ago - 1 dependent package - 2 dependent repositories - 0 stars on GitHub
github.com/juju/viddy v0.3.4 πŸ’°
πŸ‘€ A modern watch command. Time machine and pager etc.
35 versions - Latest release: over 2 years ago - 1 dependent package - 3 dependent repositories - 0 stars on GitHub
Top 4.7% on proxy.golang.org
github.com/strangelove-ventures/ibctest/v6 v6.0.0
Conformance tests for inter-blockchain communication
8 versions - Latest release: 6 months ago - 1 dependent package - 6 dependent repositories - 58 stars on GitHub
Top 9.5% on proxy.golang.org
github.com/abdfnx/botwaygo v0.1.5
Golang client package for Botway.
18 versions - Latest release: 9 months ago - 1 dependent package - 1 dependent repositories - 2 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/rusq/slackdump/v2 v2.5.8 πŸ’°
Make a backup of your private and public slack messages, threads, files, and users locally.
49 versions - Latest release: about 1 month ago - 1 dependent package - 325 stars on GitHub
github.com/bmedicke/bhdr v0.0.6
beauftiful home assistant TUI πŸ‘οΈπŸ™
6 versions - Latest release: about 2 years ago - 1 dependent package - 1 dependent repositories - 1 stars on GitHub
Top 3.4% on proxy.golang.org
github.com/siderolabs/talos v1.7.1 πŸ’°
Talos Linux is a modern Linux distribution built for Kubernetes.
290 versions - Latest release: 18 days ago - 1 dependent package - 1 dependent repositories - 3,806 stars on GitHub
Top 4.6% on proxy.golang.org
github.com/f1bonacc1/process-compose v1.2.0 πŸ’°
Process Compose is a simple and flexible scheduler and orchestrator to manage non-containerized a...
48 versions - Latest release: about 1 month ago - 1 dependent package - 3 dependent repositories - 179 stars on GitHub
Top 3.9% on proxy.golang.org
github.com/microsoft/CBL-Mariner/toolkit/tools v0.0.0-20231111021818-fd9b3a5970ac
Linux OS for Azure 1P services and edge appliances
44 versions - Latest release: 6 months ago - 1 dependent package - 3,630 stars on GitHub
Top 7.0% on proxy.golang.org
github.com/memoio/console v0.16.2
Management UI for MinIO and MinIO operator
116 versions - Latest release: almost 2 years ago - 1 dependent package - 0 stars on GitHub
github.com/liupzmin/tview v0.6.7
Package tview implements rich widgets for terminal based user interfaces. The widgets provided wi...
53 versions - Latest release: over 2 years ago - 1 dependent package - 0 stars on GitHub
Top 9.5% on proxy.golang.org
github.com/wrgl/wrgl v0.14.0
Git-like data versioning.
111 versions - Latest release: 9 months ago - 1 dependent package - 1 dependent repositories - 17 stars on GitHub
Top 2.9% on proxy.golang.org
github.com/pydio/cells/v4 v4.4.0
Future-proof content collaboration platform
76 versions - Latest release: about 2 months ago - 1 dependent package - 1 dependent repositories - 1,454 stars on GitHub
Top 7.0% on proxy.golang.org
git.kernelfortress.org/go/gitlab-cli v0.22.2
36 versions - Latest release: over 2 years ago - 1 dependent package
Top 5.9% on proxy.golang.org
github.com/gatherstars-com/jwz v1.4.0
Package jwz is an implementation of the email threading algorithm created by Jamie Zawinski and e...
9 versions - Latest release: about 1 year ago - 1 dependent package - 2 dependent repositories - 23 stars on GitHub
Top 3.5% on proxy.golang.org
knative.dev/kn-plugin-func v1.1.2
Code generated by go generate; DO NOT EDIT.
53 versions - Latest release: almost 4 years ago - 1 dependent package - 3 dependent repositories - 82 stars on
Top 5.8% on proxy.golang.org
github.com/ysugimoto/falco v1.7.0
falco is a VCL parser and linter optimized for Fastly
68 versions - Latest release: 7 days ago - 1 dependent package - 67 stars on GitHub
Top 5.3% on proxy.golang.org
code.fbi.h-da.de/danet/gosdn v0.0.2
2 versions - Latest release: about 3 years ago - 1 dependent package - 1 dependent repositories
github.com/datatug/datatug v0.4.77
Agent for https://datatug.app developed in Go language
95 versions - Latest release: 11 days ago - 1 dependent package - 1 dependent repositories - 4 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/syleron/femto v0.0.0-20200107145753-dbb5f68c6b58
An editor component for tview. Derived from the micro editor.
1 version - Latest release: over 4 years ago - 1 dependent package - 0 stars on GitHub
Top 4.5% on proxy.golang.org
github.com/ankitpokhrel/jira-cli v1.5.1 πŸ’°
πŸ”₯ Feature-rich interactive Jira command line.
15 versions - Latest release: 4 months ago - 1 dependent package - 1 dependent repositories - 2,543 stars on GitHub