{"id":18386256,"url":"https://github.com/bethropolis/mimo","last_synced_at":"2026-03-07T08:05:03.753Z","repository":{"id":233080289,"uuid":"783963133","full_name":"bethropolis/mimo","owner":"bethropolis","description":"a simple programming language written in js. ","archived":false,"fork":false,"pushed_at":"2026-03-01T02:59:40.000Z","size":3299,"stargazers_count":9,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-01T05:38:36.842Z","etag":null,"topics":["ast","compiler","javascript","lexer","parser","programming-language"],"latest_commit_sha":null,"homepage":"https://mimo-lang.vercel.app/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bethropolis.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2024-04-08T23:20:24.000Z","updated_at":"2026-03-01T02:59:43.000Z","dependencies_parsed_at":"2024-04-13T14:39:43.063Z","dependency_job_id":"d94d3e03-08f9-410b-8b88-29c67babe707","html_url":"https://github.com/bethropolis/mimo","commit_stats":null,"previous_names":["bethropolis/mimo"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/bethropolis/mimo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bethropolis%2Fmimo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bethropolis%2Fmimo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bethropolis%2Fmimo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bethropolis%2Fmimo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bethropolis","download_url":"https://codeload.github.com/bethropolis/mimo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bethropolis%2Fmimo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30209808,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T05:23:27.321Z","status":"ssl_error","status_checked_at":"2026-03-07T05:00:17.256Z","response_time":53,"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":["ast","compiler","javascript","lexer","parser","programming-language"],"created_at":"2024-11-06T01:21:14.642Z","updated_at":"2026-03-07T08:05:03.746Z","avatar_url":"https://github.com/bethropolis.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"playground/src/lib/assets/mascot.png\" alt=\"Mimo mascot\" width=\"120\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://www.npmjs.com/package/mimo-lang\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/v/mimo-lang?color=%23a855f7\u0026label=npm\u0026logo=npm\" alt=\"npm version\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/bethropolis/mimo/releases\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/v/release/bethropolis/mimo?color=%236366f1\u0026label=github\u0026logo=github\" alt=\"GitHub release\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/bethropolis/mimo/blob/main/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/license/bethropolis/mimo?color=%2310b981\" alt=\"License\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://bethropolis.github.io/mimo/\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/docs-online-%23f59e0b?logo=book\" alt=\"Documentation\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cstrong\u003eA minimal prefix-notation programming language\u003c/strong\u003e\n\u003c/p\u003e\n\n---\n\n## Installation\n\n```bash\nnpm install -g mimo-lang\n```\n\n## Usage\n\n### Run Programs\n\n```bash\nmimo path/to/program.mimo\nmimo -e \"+ 1 2\"\necho \"+ 1 2\" | mimo\n```\n\n### REPL\n\n```bash\nmimo repl\n```\n\n### CLI Commands\n\n```bash\nmimo run \u003cfile\u003e           # Run a file\nmimo repl                 # Start REPL\nmimo fmt \u003cpath\u003e --write   # Format files\nmimo lint \u003cpath\u003e          # Lint files\nmimo test \u003cpath\u003e          # Run tests\n```\n\n## Syntax\n\n```mimo\nfunction add(a, b)\n  return + a b\nend\n\ncall add(4, 8) -\u003e result\nshow result\n```\n\nMore examples in [`test/source/`](./test/source).\n\n## Development\n\n```bash\nbun install\nbun run check\n```\n\n## Playground\n\n\u003cp\u003e\n  \u003cimg src=\"docs/assets/playground.jpg\" alt=\"Mimo playground\" width=\"600\"\u003e\n\u003c/p\u003e\n\nThe playground is a web application that allows you to run Mimo code in your browser.\n\n## About\nthis is just a simple language i created to learn more about how programing languages work.\ncontributions are welcome.\n\n## Links\n\n- [Documentation](https://bethropolis.github.io/mimo/)\n- [Playground](https://mimo-lang.vercel.app/playground/)\n- [GitHub](https://github.com/bethropolis/mimo)\n\n## License\n\nReleased under [MIT](./LICENSE)\n\n\u003cp align=\"center\"\u003ehappy coding 💜\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbethropolis%2Fmimo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbethropolis%2Fmimo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbethropolis%2Fmimo/lists"}