{"id":37143764,"url":"https://github.com/csimplestring/delve","last_synced_at":"2026-01-14T16:53:00.012Z","repository":{"id":25669118,"uuid":"29104934","full_name":"csimplestring/delve","owner":"csimplestring","description":"Go debugger","archived":false,"fork":true,"pushed_at":"2015-01-10T23:33:12.000Z","size":8756,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-04-16T00:22:24.555Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"go-delve/delve","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/csimplestring.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-01-11T20:28:33.000Z","updated_at":"2019-01-04T18:16:08.000Z","dependencies_parsed_at":"2023-06-29T17:45:56.758Z","dependency_job_id":null,"html_url":"https://github.com/csimplestring/delve","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/csimplestring/delve","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csimplestring%2Fdelve","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csimplestring%2Fdelve/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csimplestring%2Fdelve/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csimplestring%2Fdelve/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/csimplestring","download_url":"https://codeload.github.com/csimplestring/delve/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csimplestring%2Fdelve/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28426824,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T16:38:47.836Z","status":"ssl_error","status_checked_at":"2026-01-14T16:34:59.695Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-14T16:52:59.339Z","updated_at":"2026-01-14T16:53:00.003Z","avatar_url":"https://github.com/csimplestring.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Delve\n\n### What is Delve?\n\nDelve is a (Beta) Go debugger, written in Go.\n\nThis project is currently in beta. Most of the functionality is there, but there are various improvements to be made.\n\n### Building\n\nDelve requires Go 1.4 to build.\n\n```\ngo get github.com/derekparker/delve/cmd/dlv\n```\n\nYou will need readline installed on your system. With apt simply: `sudo apt-get install libreadline-dev` .\n\n### Features\n\n* Attach to an already running process\n* Launch a process and begin debug session\n* Set breakpoints, single step, step over functions, print variable contents, print thread and goroutine information\n\n### Usage\n\nThe debugger can be launched in three ways:\n\n* Compile, run, and attach in one step:\n\n\t```\n\t$ dlv -run\n\t```\n\n* Provide the name of the program you want to debug, and the debugger will launch it for you.\n\n\t```\n\t$ dlv path/to/program\n\t```\n\n* Provide the pid of a currently running process, and the debugger will attach and begin the session.\n\n\t```\n\t$ sudo dlv -pid 44839\n\t```\n\n### Breakpoints\n\nDelve can insert breakpoints via the `breakpoint` command once inside a debug session, however for ease of debugging, you can also call `runtime.Breakpoint()` and Delve will handle the breakpoint and stop the program at the next source line.\n\n### Commands\n\nOnce inside a debugging session, the following commands may be used:\n\n* `break` - Set break point at the entry point of a function, or at a specific file/line. Example: `break foo.go:13`.\n\n* `continue` - Run until breakpoint or program termination.\n\n* `step` - Single step through program.\n\n* `next` - Step over to next source line.\n\n* `threads` - Print status of all traced threads.\n\n* `goroutines` - Print status of all goroutines.\n\n* `print $var` - Evaluate a variable.\n\n* `info $type [regex]` - Outputs information about the symbol table. An optional regex filters the list. Example `info funcs unicode`. Valid types are:\n  * `sources` - Prings the path of all source files\n  * `funcs` - Prings the name of all defined functions\n  * `locals` - Prints the name and value of all local variables in the current context\n  * `args` - Prints the name and value of all arguments to the current function\n\n* `exit` - Exit the debugger.\n\n\n### Upcoming features\n\n* In-scope variable setting\n* Support for OS X\n* Editor integration\n\n### License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcsimplestring%2Fdelve","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcsimplestring%2Fdelve","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcsimplestring%2Fdelve/lists"}