{"id":13340909,"url":"https://github.com/hackwaly/vscode-ocaml-debugger","last_synced_at":"2025-09-08T20:35:10.481Z","repository":{"id":146287538,"uuid":"150896142","full_name":"hackwaly/vscode-ocaml-debugger","owner":"hackwaly","description":"OCaml debugger for VS Code","archived":false,"fork":false,"pushed_at":"2020-02-15T07:58:09.000Z","size":30,"stargazers_count":14,"open_issues_count":4,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-08T20:35:08.468Z","etag":null,"topics":["debugger","vscode-extension"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hackwaly.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}},"created_at":"2018-09-29T19:25:12.000Z","updated_at":"2022-03-20T19:45:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"4a121b3d-bd3c-430c-a2ff-0300ccb39e9c","html_url":"https://github.com/hackwaly/vscode-ocaml-debugger","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hackwaly/vscode-ocaml-debugger","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackwaly%2Fvscode-ocaml-debugger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackwaly%2Fvscode-ocaml-debugger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackwaly%2Fvscode-ocaml-debugger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackwaly%2Fvscode-ocaml-debugger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hackwaly","download_url":"https://codeload.github.com/hackwaly/vscode-ocaml-debugger/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackwaly%2Fvscode-ocaml-debugger/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274231507,"owners_count":25245601,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-08T02:00:09.813Z","response_time":121,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["debugger","vscode-extension"],"created_at":"2024-07-29T19:24:30.427Z","updated_at":"2025-09-08T20:35:10.451Z","avatar_url":"https://github.com/hackwaly.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OCaml Debugger\n\n***[Please report issuses here](https://github.com/hackwaly/ocamlearlybird/issues)***\n\n## Prerequisite \n\n```\nopam install earlybird\n```\n\n### Sample launch.json\n\n```json\n{\n  \"version\": \"0.2.0\",\n  \"configurations\": [\n    {\n      \"name\": \"OCaml Debug\",\n      \"type\": \"ocaml-debugger\",\n      \"request\": \"launch\",\n      \"program\": \"${workspaceFolder}/a.out\"\n    }\n  ]\n}\n```\n\nAssuming a file at `src/main.ml`\n\n```ocaml\nlet fizzbuzz i = match ((i mod 3), (i mod 5)) with\n    | (0, 0) -\u003e \"fizbuzz\"\n    | (_, 0) -\u003e \"buzz\"\n    | (0, _) -\u003e \"fizz\"\n    | (_, _) -\u003e string_of_int i;;\n\nlet do_fizzbuzz n = for i = 1 to n do\n    print_endline (fizzbuzz i)\ndone;;\n\ndo_fizzbuzz 100;;\n\n```\n\nCompile `main.ml`\n\n```bash\nocamlc -g src/main.ml\n# creates a.out in root of the project\n```\n\nThen set breakpoint in `main.ml` and run **\"OCaml Debug\"** from the VS Code Debug panel.\n\n## FAQ\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackwaly%2Fvscode-ocaml-debugger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhackwaly%2Fvscode-ocaml-debugger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackwaly%2Fvscode-ocaml-debugger/lists"}