{"id":19238229,"url":"https://github.com/olical/clojure-dap","last_synced_at":"2026-03-10T11:05:18.094Z","repository":{"id":40616264,"uuid":"507580162","full_name":"Olical/clojure-dap","owner":"Olical","description":"DAP server for debugging Clojure over nREPL with CIDER's debugger","archived":false,"fork":false,"pushed_at":"2025-02-02T23:07:22.000Z","size":428,"stargazers_count":63,"open_issues_count":0,"forks_count":2,"subscribers_count":10,"default_branch":"main","last_synced_at":"2025-04-16T14:20:23.124Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Olical.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-06-26T13:21:05.000Z","updated_at":"2025-04-07T13:27:01.000Z","dependencies_parsed_at":"2023-02-12T18:45:22.152Z","dependency_job_id":"2d0f206a-28fb-4aa5-9734-26313b0112e0","html_url":"https://github.com/Olical/clojure-dap","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Olical/clojure-dap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Olical%2Fclojure-dap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Olical%2Fclojure-dap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Olical%2Fclojure-dap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Olical%2Fclojure-dap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Olical","download_url":"https://codeload.github.com/Olical/clojure-dap/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Olical%2Fclojure-dap/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30331653,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T05:25:20.737Z","status":"ssl_error","status_checked_at":"2026-03-10T05:25:17.430Z","response_time":106,"last_error":"SSL_read: 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":"2024-11-09T16:29:58.774Z","updated_at":"2026-03-10T11:05:18.071Z","avatar_url":"https://github.com/Olical.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Clojure CIDER DAP server\n\nWill enable rich, interactive, debugging UIs in Neovim, VS Code and any other\neditor that supports DAP. See [nvim-dap-ui][nvim-dap-ui] for an example.\n\nComing \"soon\"! Until then, you can use the very basic [Conjure][conjure]\ndebugger support. It's not a great UI, but you can learn about it on\n[the Conjure wiki][conjure-wiki].\n\nUseful links for development:\n\n- https://microsoft.github.io/debug-adapter-protocol/overview\n- https://microsoft.github.io/debug-adapter-protocol/specification\n- https://github.com/cognitect-labs/anomalies\n- https://github.com/metosin/malli\n- https://cljdoc.org/d/nrepl/nrepl/1.1.0-alpha1/doc/usage/client\n- https://cljdoc.org/d/manifold/manifold/0.3.0/api/manifold.deferred\n\n## Protocol support\n\n### Base Protocol\n\n- [ ] Cancel\n- [x] ErrorResponse\n- [x] Event\n- [x] ProtocolMessage\n- [x] Request\n- [x] Response\n\n### Events\n\n- [ ] Breakpoint\n- [ ] Capabilities\n- [ ] Continued\n- [ ] Exited\n- [x] Initialized\n- [ ] Invalidated\n- [ ] LoadedSource\n- [ ] Memory\n- [ ] Module\n- [x] Output\n- [ ] Process\n- [ ] ProgressEnd\n- [ ] ProgressStart\n- [ ] ProgressUpdate\n- [x] Stopped\n- [x] Terminated\n- [ ] Thread\n\n### Requests\n\n- [x] Attach\n- [ ] BreakpointLocations\n- [ ] Completions\n- [x] ConfigurationDone\n- [ ] Continue\n- [ ] DataBreakpointInfo\n- [ ] Disassemble\n- [x] Disconnect\n- [x] Evaluate\n- [ ] ExceptionInfo\n- [ ] Goto\n- [ ] GotoTargets\n- [x] Initialize\n- [ ] Launch\n- [ ] LoadedSources\n- [ ] Modules\n- [ ] Next\n- [ ] Pause\n- [ ] ReadMemory\n- [ ] Restart\n- [ ] RestartFrame\n- [ ] ReverseContinue\n- [ ] Scopes\n- [x] SetBreakpoints\n- [ ] SetDataBreakpoints\n- [ ] SetExceptionBreakpoints\n- [ ] SetExpression\n- [ ] SetFunctionBreakpoints\n- [ ] SetInstructionBreakpoints\n- [ ] SetVariable\n- [ ] Source\n- [ ] StackTrace\n- [ ] StepBack\n- [ ] StepIn\n- [ ] StepInTargets\n- [ ] StepOut\n- [ ] Terminate\n- [ ] TerminateThreads\n- [x] Threads\n- [ ] Variables\n- [ ] WriteMemory\n\n### Reverse Requests\n\n- [ ] RunInTerminal\n- [ ] StartDebugging\n\n[nvim-dap-ui]: https://github.com/rcarriga/nvim-dap-ui\n[conjure]: https://github.com/Olical/conjure\n[conjure-wiki]: https://github.com/Olical/conjure/wiki/Clojure-nREPL-CIDER-debugger\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Folical%2Fclojure-dap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Folical%2Fclojure-dap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Folical%2Fclojure-dap/lists"}