{"id":40940813,"url":"https://github.com/codio/jeroo","last_synced_at":"2026-01-22T04:34:17.082Z","repository":{"id":53197015,"uuid":"344754305","full_name":"codio/jeroo","owner":"codio","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-28T08:26:18.000Z","size":1479,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-08-28T15:36:11.861Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"OCaml","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codio.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":"2021-03-05T09:09:17.000Z","updated_at":"2025-08-28T08:26:23.000Z","dependencies_parsed_at":"2022-09-15T01:57:18.562Z","dependency_job_id":null,"html_url":"https://github.com/codio/jeroo","commit_stats":null,"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/codio/jeroo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codio%2Fjeroo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codio%2Fjeroo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codio%2Fjeroo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codio%2Fjeroo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codio","download_url":"https://codeload.github.com/codio/jeroo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codio%2Fjeroo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28654734,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T01:17:37.254Z","status":"online","status_checked_at":"2026-01-22T02:00:07.137Z","response_time":144,"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":[],"created_at":"2026-01-22T04:34:16.368Z","updated_at":"2026-01-22T04:34:17.076Z","avatar_url":"https://github.com/codio.png","language":"OCaml","funding_links":[],"categories":[],"sub_categories":[],"readme":"#  Jeroo: A tool for learning Object-Oriented Programming\n\nPlay now! [jeroo.org/beta](https://www.jeroo.org/beta)\n\nMore info: [jeroo.org](https://www.jeroo.org)\n\n## What is Jeroo?\n\nJeroo is a text-based coding environment designed to help novices master the basic mechanics of object oriented programming. It features a limited syntax to emphasize basic computational thinking skills like problem decomposition (ie, breaking things down into subtasks), the semantics of control structures like loops and ifs, and use of objects and state to solve problems. \n\n Solving problems involves writing a program that helps one or more kangaroo-like objects (ie, Jeroos) hop around an island while avoiding the nets set by animal collectors to achieve an objective. Along the way, Jeroos can pick up flowers growing on the island and use them to disarm nets. Jeroos must be careful to also stay out of the water, since they've never developed an ability to swim.\n\nJeroo has been used in high school and university classrooms for nearly 20 years, and many teachers find that it provides a great transition tool between the modern block-based systems like Scratch and a more general purpose programming language. The system allows learners to program using a variety of syntax styles to best align with the target programming language in a curriculum. In particular, you can choose between Java/C#, Python, or Visual Basic style syntaxes all within the same tool. \n\n## Screenshots\n\n![](https://www.jeroo.org/images/ScreenCapture.gif)\n\n## Resources for Teachers and Students\n\nOur Introduction to Jeroo textbook provides an overview of how to program with Jeroo and gives more details about the system's backstory. Three different versions of the book are linked below, corresponding to the three language styles available. Pick the one that matches your target language. Note that the appendix materials showing screenshots of Jeroo are based on the stand-alone program, rather than the new web-based Jeroo--they're still a work in progress. \n\n- [Java/C#/Javascript](https://www.jeroo.org/docs/JerooDocJava.pdf)\n- [Python Syntax](https://www.jeroo.org/docs/JerooDocPython.pdf)\n- [VB Syntax](https://www.jeroo.org/docs/JerooDocVB.pdf)\n\n## The Team\n\n- Ben Konz\n- Caelan Bryan\n- Thomas Connole\n- John Adam\n- Brian Dorn\n\nThe best way to contact us with questions, comments or feature requests, is to email support@jeroo.org.\n\n## Building from source\n\nBuild tools:\n- yarn\n- opam (m4 required by opam)\n\n### Building the compiler\n\nOpam is experimental on Windows, so I would stick to\nMacOS or Linux to build the compiler. Once the JerooCompiler.bc.js \nhas been created, any platform can build the rest of the site.\n\n```text\ncd src/compiler\nopam switch create ./ ocaml-base-compiler.4.08.1\nopam install --deps-only .\neval $(opam env)\ndune build ./JerooCompiler.bc.js --profile release\ndune runtest # optional, verify all compiler tests pass\n```\n\nThe compiler JavaScript is located in `jeroo/src/compiler/_build/default/JerooCompiler.bc.js`\n\n### Building the frontend\n\n```text\n# cd to project root\nyarn install\nyarn build --prod\nyarn test # optional, run unit tests\nyarn e2e # optional, run end-to-end tests (only works on Firefox)\n```\n\nThe newly built site is located in `jeroo/dist/jeroo`\n\n### Start locally\n\nServer link changed in ```environments/environment.ts```\n\nPort changed in ```angular.json``` ```projects.serve.options.port```\n\n```text\nyarn start\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodio%2Fjeroo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodio%2Fjeroo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodio%2Fjeroo/lists"}