All Projects → liudng → godump

liudng / godump

Licence: other
Dumps information about a variable Like var_dump() in php.

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to godump

dd
This package will add the dd and dump helpers to your Phalcon application.
Stars: ✭ 17 (-68.52%)
Mutual labels:  debug, dump
xr
Lightweight debug server utility for PHP.
Stars: ✭ 116 (+114.81%)
Mutual labels:  debug, dump
SmartDump
SmartDump - an exception and memory dump capture utility
Stars: ✭ 17 (-68.52%)
Mutual labels:  debug, dump
Ray
Debug with Ray to fix problems faster
Stars: ✭ 263 (+387.04%)
Mutual labels:  debug, dump
var-dumper
Helper for dumping variable for debug purposes
Stars: ✭ 13 (-75.93%)
Mutual labels:  debug, dump
Laravel Artisan Dd
Quickly run some code via Artisan
Stars: ✭ 136 (+151.85%)
Mutual labels:  debug, dump
UnityCLI
Unity TCP CLI communication for debugging
Stars: ✭ 22 (-59.26%)
Mutual labels:  debug
eruda-webpack-plugin
A webpack plugin of eruda to help you develop mobile app
Stars: ✭ 56 (+3.7%)
Mutual labels:  debug
alog
Update: use loguru instead. Simple straight logging your Python code
Stars: ✭ 38 (-29.63%)
Mutual labels:  debug
mysql-backup-golang
Mysql backup golang
Stars: ✭ 25 (-53.7%)
Mutual labels:  dump
cassandra-exporter
Simple Tool to Export / Import Cassandra Tables into JSON
Stars: ✭ 44 (-18.52%)
Mutual labels:  dump
vudu
GUI based in-game debugging system for LÖVE
Stars: ✭ 21 (-61.11%)
Mutual labels:  debug
doks-debug
A Docker image with Kubernetes manifests for investigation and troubleshooting.
Stars: ✭ 82 (+51.85%)
Mutual labels:  debug
vscode
VSCode debug extension for probe-rs. It uses the MS DAP protocol to communicate directly with the probe (via probe-rs), and supports basic command line debugging in addition to VSCode UI.
Stars: ✭ 45 (-16.67%)
Mutual labels:  debug
yii-debug
Yii debug panel extension
Stars: ✭ 23 (-57.41%)
Mutual labels:  debug
fastapi-debug-toolbar
A debug toolbar for FastAPI.
Stars: ✭ 90 (+66.67%)
Mutual labels:  debug
pagebuster
PageBuster - dump all executable pages of packed processes.
Stars: ✭ 188 (+248.15%)
Mutual labels:  dump
awaitwhat
Await, What?
Stars: ✭ 48 (-11.11%)
Mutual labels:  debug
debugging-async-operations-in-nodejs
Example code to accompany my blog post on debugging async operations in Node.js.
Stars: ✭ 22 (-59.26%)
Mutual labels:  debug
flutter ume
UME is an in-app debug kits platform for Flutter. Produced by Flutter Infra team of ByteDance
Stars: ✭ 1,792 (+3218.52%)
Mutual labels:  debug

godump

Dumps information about a variable. Now godump is part of zhgo project.

Build Status Coverage GoDoc

Install

go get github.com/liudng/godump

Sample code

package main

import (
	"github.com/liudng/godump"
)

func main() {
	a := make(map[string]int64)

	a["A"] = 1
	a["B"] = 2

	godump.Dump(a)
}

Then Print:

(map[string]int64)
  A(int64) 1
  B(int64) 2
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].