Gebug alternatives and similar packages
Based on the "Other Software" category.
Alternatively, view Gebug alternatives based on common mentions on social networks and blogs.
-
syncthing
An open, decentralized file synchronization tool and protocol. -
limetext
Lime Text is a powerful and elegant text editor primarily developed in Go that aims to be a Free and open-source software successor to Sublime Text. -
Gor
Http traffic replication tool, for replaying traffic from production to stage/dev environments in real-time. -
Seaweed File System
Fast, Simple and Scalable Distributed File System with O(1) disk seek. -
rkt
An App Container runtime that integrates with init systems, is compatible with other container formats like Docker, and supports alternative execution engines like KVM. -
confd
Manage local application configuration files using templates and data from etcd or consul. -
toxiproxy
Proxy to simulate network and system conditions for automated tests. -
heka
universal tool for data processing from Mozilla. Large collection of built-in plugins. Extendable via Go and Lua plugin API. -
Duplicacy
A cross-platform network and cloud backup tool based on the idea of lock-free deduplication. -
Docker
An open platform for distributed applications for developers and sysadmins. -
scc
Sloc Cloc and Code, a very fast accurate code counter with complexity calculations and COCOMO estimates. -
Circuit
Circuit is a programmable platform-as-a-service (PaaS) and/or Infrastructure-as-a-Service (IaaS), for management, discovery, synchronization and orchestration of services and hosts comprising cloud applications. -
lgo
Interactive Go programming with Jupyter. It supports code completion, code inspection and 100% Go compatibility. -
peg
Peg, Parsing Expression Grammar, is an implementation of a Packrat parser generator. -
Go Package Store
An app that displays updates for the Go packages in your GOPATH. -
shell2http
Executing shell commands via http server (for prototyping or remote control). -
blocky
Fast and lightweight DNS proxy as ad-blocker for local network with many features. -
gfile
Securely transfer files between two computers, without any third party, over WebRTC. -
mockingjay
Fake HTTP servers and consumer driven contracts from one configuration file. You can also make the server randomly misbehave to help do more realistic performance tests. -
ipe
An open source Pusher server implementation compatible with Pusher client libraries written in GO. -
wellington
Sass project management tool, extends the language with sprite functions (like Compass). -
tcpprobe
TCP tool for network performance and path monitoring, including socket statistics.
Scout APM - Leading-edge performance monitoring starting at $39/month
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of Gebug or a related project?
Popular Comparisons
README
[Alt text](assets/logo.png?raw=true"Gebug")
A tool that makes debugging of Dockerized Go applications super easy by enabling Debugger and Hot-Reload features, seamlessly.
Installing
go get -u github.com/moshebe/gebug
Usage
➜ gebug --help
Gebug helps you setup a fully suited debugging environment of Go application running inside a container.
It enables options like connecting with remote debugger and breakpoints inside the code or
use hot-reload features which auto-build and run upon new change detected on the source code.
Usage:
gebug [command]
Available Commands:
clean Clean Gebug stack
destroy Destroy the Gebug project
help Help about any command
init Initialize a Gebug project
start Start Gebug services
version Gebug's version
Flags:
-h, --help help for gebug
-v, --verbose enable verbose mode
-w, --workdir string your Go application root directory (default ".")
Use "gebug [command] --help" for more information about a command.
Demo
Configure workspace for Hot-Reload
[](assets/demo-hot-reload.gif)
Goland Debugger
[](assets/demo-goland-debugger.gif)
Visual Studio Code Debugger
[](assets/demo-vscode-debugger.gif)
How Does It Work
Nothing special, no voodoo. Gebug just handles the Dockerfile and docker-compose configuration files generation with a easy-to-use command line utility.
You can find the generated files in your project under .gebug
directory.
We are all programmers and I know you like to play with your toys, so feel free to edit any of those files in order to fit your use-case.
Just make sure to run gebug start --skip-generate
so the next run won't override your changes.
Let's examine the config.yaml
fields so you will feel more comfortable editing as you wish:
Field | Default | Description |
---|---|---|
name | application/project name | |
output_binary | /app | output binary artifact inside the runtime container |
build_command | go build -o {{.output_binary}} | build command inside the runtime container. Note you can reference other configuration fields. When enabling Debugger -gcflags="all=-N -l" will be appended to the build command to stop compiler optimization and symbol removing |
run_command | {.output_binary}} | run command, probably most of the time will just be the binary artifact path |
runtime_image | golang:1.15.2 | base Docker image for the runtime container |
debugger_enabled | false | whether to enable delve debugger inside the container or just use hot-reload |
debugger_port | 40000 | delve debugger listen port, relevant only if debugger_enabled was set |
expose_ports | [] | list of ports to expose inside the container. Uses the same syntax as docker-compose for mapping between host and container ports(e.g: "8080:8080"). No need to add the delve debugger listen port as it will be auto-added |
networks | [] | list of docker external networks to join. if no network is selected, a new one will be created |
environment | [] | list of environment variables to be set inside the container. Syntax: FOO=BAR or just FOO which will take the variable FOO from host and set it with its value |
License
Gebug is released under the Apache 2.0 license. See LICENSE.
*Note that all licence references and agreements mentioned in the Gebug README section above
are relevant to that project's source code only.