{"id":13565785,"url":"https://github.com/arrow-kt/arrow-meta","last_synced_at":"2025-05-15T07:03:50.732Z","repository":{"id":35382529,"uuid":"217378939","full_name":"arrow-kt/arrow-meta","owner":"arrow-kt","description":"Functional companion to Kotlin's Compiler","archived":false,"fork":false,"pushed_at":"2025-05-14T01:03:31.000Z","size":21982,"stargazers_count":403,"open_issues_count":105,"forks_count":43,"subscribers_count":20,"default_branch":"main","last_synced_at":"2025-05-15T07:03:41.571Z","etag":null,"topics":["code","codegeneration","compiler-plugin","generics","higher-kinded-types","ide","intellij-plugin","kotlin","kotlin-compiler","kotlin-multiplatform","linter","macros","meta","metaprogramming","quasiquote","template-metaprogramming","tree-structure","typeclasses","typesystem","union-type"],"latest_commit_sha":null,"homepage":"https://meta.arrow-kt.io","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arrow-kt.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":"2019-10-24T19:28:44.000Z","updated_at":"2025-04-02T11:22:28.000Z","dependencies_parsed_at":"2023-11-16T19:59:09.942Z","dependency_job_id":"d30b1e27-566f-4e71-bb59-39de283a235a","html_url":"https://github.com/arrow-kt/arrow-meta","commit_stats":{"total_commits":662,"total_committers":37,"mean_commits":17.89189189189189,"dds":0.6812688821752266,"last_synced_commit":"26abd2d130f34bcb68a7466d3986dba82ac60f1f"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arrow-kt%2Farrow-meta","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arrow-kt%2Farrow-meta/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arrow-kt%2Farrow-meta/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arrow-kt%2Farrow-meta/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arrow-kt","download_url":"https://codeload.github.com/arrow-kt/arrow-meta/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254291961,"owners_count":22046424,"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","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":["code","codegeneration","compiler-plugin","generics","higher-kinded-types","ide","intellij-plugin","kotlin","kotlin-compiler","kotlin-multiplatform","linter","macros","meta","metaprogramming","quasiquote","template-metaprogramming","tree-structure","typeclasses","typesystem","union-type"],"created_at":"2024-08-01T13:01:55.432Z","updated_at":"2025-05-15T07:03:50.711Z","avatar_url":"https://github.com/arrow-kt.png","language":"Kotlin","funding_links":[],"categories":["code","Kotlin"],"sub_categories":[],"readme":"# Λrrow Meta\n\n[![Publish artifacts](https://github.com/arrow-kt/arrow-meta/workflows/Publish%20Artifacts/badge.svg)](https://github.com/arrow-kt/arrow-meta/actions?query=workflow%3A%22Publish+Artifacts%22)\n[![Publish documentation](https://github.com/arrow-kt/arrow-meta/workflows/Publish%20Documentation/badge.svg)](https://github.com/arrow-kt/arrow-meta/actions?query=workflow%3A%22Publish+Documentation%22)\n[![Kotlin version badge](https://img.shields.io/badge/kotlin-1.6-blue.svg)](https://kotlinlang.org/docs/whatsnew16.html)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)\n[![Maven Central](https://img.shields.io/maven-central/v/io.arrow-kt/arrow-meta?color=4caf50\u0026label=latest%20release)](https://maven-badges.herokuapp.com/maven-central/io.arrow-kt/arrow-meta)\n\nFunctional companion to Kotlin's Compiler\n\n## Getting started\n\nΛrrow Meta is a meta-programming library that cooperates with the Kotlin compiler in all it's phases bringing its full power to the community.\n\nWriting compiler plugins, source transformations, linters, type search engines, automatic code refactoring,... are just a few of the [use cases](#use-cases) of the things that can be accomplished with Meta.\n\n\u003ca href=\"http://www.youtube.com/watch?feature=player_embedded\u0026v=WKR384ZeBgk\n\" target=\"_blank\"\u003e\u003cimg src=\"http://img.youtube.com/vi/WKR384ZeBgk/0.jpg\"\nalt=\"Lambda World 2019 - Arrow Meta - Enabling Functional Programming in the Kotlin Compiler\" width=\"100%\" border=\"10\" /\u003e\u003c/a\u003e\n\n## Λrrow Meta examples\n\n![Hello World Compiler Plugin Demo](docs/docs/img/demos/hello-world-compiler-plugin.gif)\n\nTake a look at [`arrow-meta-examples`](https://github.com/arrow-kt/arrow-meta-examples) repository for getting more details.\n\n## Build and run in your local environment\n\nPre-requirements: JDK 8\n\n**Build and run tests**\n\n```\n./gradlew buildMeta\n```\n\n**Generate API Doc and validate it**\n\n```\n./gradlew buildMetaDoc\n```\n\n**Run the docs in your local server**\n\n```\n./gradlew buildMetaDoc\n./gradlew :arrow-meta:dokkaJekyll\nbundle install --gemfile docs/Gemfile --path vendor/bundle\nBUNDLE_GEMFILE=docs/Gemfile bundle exec jekyll serve -s docs/docs/\n```\n\n## Testing\n\nΛrrow Meta provides an easy way to write tests about plugins, quotes, etc. thanks to [Kotlin Compile Testing](https://github.com/tschuchortdev/kotlin-compile-testing), a library developed by [Thilo Schuchort](https://github.com/tschuchortdev).\n\n## Contributing\n\nΛrrow Meta is an inclusive community powered by awesome individuals like you. As an actively growing ecosystem, Λrrow Meta and its associated libraries and toolsets are in need of new contributors! We have issues suited for all levels, from entry to advanced, and our maintainers are happy to provide 1:1 mentoring. All are welcome in Λrrow Meta.\n\nIf you’re looking to contribute, have questions, or want to keep up-to-date about what’s happening, please follow us here and say hello!\n\n- [#arrow-meta on Kotlin Slack](https://kotlinlang.slack.com/)\n\n## Licence\n\n```\nCopyright (C) 2017 The Λrrow Authors\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n   http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farrow-kt%2Farrow-meta","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farrow-kt%2Farrow-meta","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farrow-kt%2Farrow-meta/lists"}