{"id":13423461,"url":"https://github.com/wren-lang/wren","last_synced_at":"2025-12-17T05:01:43.158Z","repository":{"id":11940130,"uuid":"14509809","full_name":"wren-lang/wren","owner":"wren-lang","description":"The Wren Programming Language. Wren is a small, fast, class-based concurrent scripting language.","archived":false,"fork":false,"pushed_at":"2025-11-19T22:18:55.000Z","size":8050,"stargazers_count":7592,"open_issues_count":247,"forks_count":589,"subscribers_count":156,"default_branch":"main","last_synced_at":"2025-12-02T12:59:59.652Z","etag":null,"topics":["bytecode","c","fibers","interpreter","language","scripting-languages","wren"],"latest_commit_sha":null,"homepage":"http://wren.io","language":"Wren","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/wren-lang.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"AUTHORS","dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2013-11-19T00:43:45.000Z","updated_at":"2025-12-02T06:53:56.000Z","dependencies_parsed_at":"2023-01-14T05:15:24.973Z","dependency_job_id":"7072c646-0f94-454e-bb73-24e1e0bd7042","html_url":"https://github.com/wren-lang/wren","commit_stats":{"total_commits":1530,"total_committers":127,"mean_commits":"12.047244094488189","dds":"0.36993464052287583","last_synced_commit":"c2a75f1eaf9b1ba1245d7533a723360863fb012d"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/wren-lang/wren","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wren-lang%2Fwren","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wren-lang%2Fwren/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wren-lang%2Fwren/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wren-lang%2Fwren/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wren-lang","download_url":"https://codeload.github.com/wren-lang/wren/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wren-lang%2Fwren/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27633976,"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-12-10T02:00:12.818Z","response_time":54,"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":["bytecode","c","fibers","interpreter","language","scripting-languages","wren"],"created_at":"2024-07-31T00:00:35.110Z","updated_at":"2025-12-17T05:01:43.141Z","avatar_url":"https://github.com/wren-lang.png","language":"Wren","funding_links":[],"categories":["C","Embed-Script/VM/","Wren","计算机编程 数据结构与算法","Uncategorized","Scripting","Other"],"sub_categories":["Lua","网络服务_其他","Uncategorized"],"readme":"## Wren is a small, fast, class-based concurrent scripting language\n\nThink Smalltalk in a Lua-sized package with a dash of Erlang and wrapped up in\na familiar, modern [syntax][].\n\n```dart\nSystem.print(\"Hello, world!\")\n\nclass Wren {\n  flyTo(city) {\n    System.print(\"Flying to %(city)\")\n  }\n}\n\nvar adjectives = Fiber.new {\n  [\"small\", \"clean\", \"fast\"].each {|word| Fiber.yield(word) }\n}\n\nwhile (!adjectives.isDone) System.print(adjectives.call())\n```\n\n *  **Wren is small.** The VM implementation is under [4,000 semicolons][src].\n    You can skim the whole thing in an afternoon. It's *small*, but not\n    *dense*. It is readable and [lovingly-commented][nan].\n\n *  **Wren is fast.** A fast single-pass compiler to tight bytecode, and a\n    compact object representation help Wren [compete with other dynamic\n    languages][perf].\n\n *  **Wren is class-based.** There are lots of scripting languages out there,\n    but many have unusual or non-existent object models. Wren places\n    [classes][] front and center.\n\n *  **Wren is concurrent.** Lightweight [fibers][] are core to the execution\n    model and let you organize your program into an army of communicating\n    coroutines.\n\n *  **Wren is a scripting language.** Wren is intended for embedding in\n    applications. It has no dependencies, a small standard library,\n    and [an easy-to-use C API][embedding]. It compiles cleanly as C99, C++98\n    or anything later.\n\nIf you like the sound of this, [let's get started][started]. You can even try\nit [in your browser][browser]! Excited? Well, come on and [get\ninvolved][contribute]!\n\n[![Build Status](https://travis-ci.org/wren-lang/wren.svg?branch=main)](https://travis-ci.org/wren-lang/wren)\n\n[syntax]: http://wren.io/syntax.html\n[src]: https://github.com/wren-lang/wren/tree/main/src\n[nan]: https://github.com/wren-lang/wren/blob/93dac9132773c5bc0bbe92df5ccbff14da9d25a6/src/vm/wren_value.h#L486-L541\n[perf]: http://wren.io/performance.html\n[classes]: http://wren.io/classes.html\n[fibers]: http://wren.io/concurrency.html\n[embedding]: http://wren.io/embedding/\n[started]: http://wren.io/getting-started.html\n[browser]: http://ppvk.github.io/wren-nest/\n[contribute]: http://wren.io/contributing.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwren-lang%2Fwren","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwren-lang%2Fwren","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwren-lang%2Fwren/lists"}