{"id":27639301,"url":"https://github.com/bryjen/mlang-compiler","last_synced_at":"2026-04-27T18:32:10.066Z","repository":{"id":242815025,"uuid":"808359464","full_name":"bryjen/mlang-compiler","owner":"bryjen","description":"Compiler toolchain for the Monkey programming language in .NET","archived":false,"fork":false,"pushed_at":"2025-04-20T05:25:28.000Z","size":1248,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-14T07:34:53.853Z","etag":null,"topics":["compiler","dotnet","fsharp","monkeylang","roslyn"],"latest_commit_sha":null,"homepage":"https://monkeylang.org/","language":"F#","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/bryjen.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}},"created_at":"2024-05-30T22:59:27.000Z","updated_at":"2025-12-19T10:04:22.000Z","dependencies_parsed_at":"2024-06-21T12:44:19.393Z","dependency_job_id":"6bf41763-9ce0-44cf-b882-8d8553fd5f7d","html_url":"https://github.com/bryjen/mlang-compiler","commit_stats":null,"previous_names":["bryjen/monkeyinterpreter","bryjen/mlang-compiler","bryjen/monkeylang"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bryjen/mlang-compiler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryjen%2Fmlang-compiler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryjen%2Fmlang-compiler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryjen%2Fmlang-compiler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryjen%2Fmlang-compiler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bryjen","download_url":"https://codeload.github.com/bryjen/mlang-compiler/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryjen%2Fmlang-compiler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32349439,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T17:12:42.749Z","status":"ssl_error","status_checked_at":"2026-04-27T17:12:41.658Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["compiler","dotnet","fsharp","monkeylang","roslyn"],"created_at":"2025-04-23T22:14:59.374Z","updated_at":"2026-04-27T18:32:10.050Z","avatar_url":"https://github.com/bryjen.png","language":"F#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n    \u003cp align=\"center\"\u003e\n        \u003ch1 align=\"center\"\u003e\u003cb\u003eMonkeyLang\u003c/b\u003e\u003c/h1\u003e\n        \u003cbr/\u003e\n\t\u003cimg src=\"https://github.com/user-attachments/assets/c3c25f7d-e5d4-4f26-b939-0b980157e352\"/\u003e\n        \u003cbr/\u003e\n\tA toolchain for the \u003ca href=\"https://monkeylang.org/\" target=\"_blank\"\u003eMonkey\u003c/a\u003e programming language on the .NET platform.\n\t\u003cbr/\u003e\n\t\u003cb\u003eNote that this project is still under active developement.\u003c/b\u003e\n    \u003c/p\u003e\n\u003c/div\u003e\n\n\n\u0026nbsp;\nA CLI tool for the Monkey programming language that runs on .NET.\nMonkey is a general-purpose, minimal, procedural language with first-class functions.\nWith a robust toolchain and tight .NET integration, it offers a feature rich platform with an emphasis on rapid prototyping.\n\n\n\u0026nbsp;\n#### Easy to install\n\n```\ndotnet tool install --global bryjen.monkey\n```\nNo bootstrapping or building from source required, all you need is a compatible .NET runtime installed.\n\n\n\u0026nbsp;\n#### Development experience first\n```\nerror: Invalid generic type.\n  ┌─ C:\\Users\\Public\\Program.mk:1:22\n  |\n0 | Result\u003cstring, System.Collections.Generic.List\u003cstring\u003e\u003e\n  |                      ^ Expected a Comma ',', or a GreaterThan '\u003e''.\n```\nInspired by the error handling and error messages of modern functional languages (OCaml, F#, Rust, Gleam, etc.), the toolchain is developed to make writing and debugging as stress-free and predictable as possible.\n\n\n\u0026nbsp;\n#### Dotnet Interop\n```csharp\n// csharp interop example\nlet builder = WebApplication.CreateBuilder(args);\nlet app = builder.Build();\n\nlet middleware = async fn(HttpContext context, Func\u003cTask\u003e next) {\n    // preprocessing\n    await next();\n    // postprocessing\n};\n\napp.Use(middleware);\napp.Run();\n```\nWith first-class .NET support, Monkey can seamlessly use countless C#/F#/VB.NET libraries.\nMonkey can also transpile into C#, allowing you to see how your Monkey code translates to C#.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbryjen%2Fmlang-compiler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbryjen%2Fmlang-compiler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbryjen%2Fmlang-compiler/lists"}