{"id":20668650,"url":"https://github.com/savi-lang/savi","last_synced_at":"2025-08-20T20:32:36.122Z","repository":{"id":39926687,"uuid":"150609622","full_name":"savi-lang/savi","owner":"savi-lang","description":"A fast language for programmers who are passionate about their craft.","archived":false,"fork":false,"pushed_at":"2024-11-22T00:23:28.000Z","size":6966,"stargazers_count":156,"open_issues_count":82,"forks_count":11,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-08-09T03:27:39.817Z","etag":null,"topics":["actor-model","compiler","concurrent-programming","llvm","programming-language","savi"],"latest_commit_sha":null,"homepage":"","language":"Crystal","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/savi-lang.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2018-09-27T15:34:47.000Z","updated_at":"2025-06-10T20:34:01.000Z","dependencies_parsed_at":"2023-02-19T02:31:42.272Z","dependency_job_id":"3fb76c7b-39ab-4b7c-8515-89be2a1a30c5","html_url":"https://github.com/savi-lang/savi","commit_stats":null,"previous_names":["jemc/mare"],"tags_count":79,"template":false,"template_full_name":null,"purl":"pkg:github/savi-lang/savi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/savi-lang%2Fsavi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/savi-lang%2Fsavi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/savi-lang%2Fsavi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/savi-lang%2Fsavi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/savi-lang","download_url":"https://codeload.github.com/savi-lang/savi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/savi-lang%2Fsavi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271378680,"owners_count":24749192,"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-08-20T02:00:09.606Z","response_time":69,"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":["actor-model","compiler","concurrent-programming","llvm","programming-language","savi"],"created_at":"2024-11-16T20:10:35.446Z","updated_at":"2025-08-20T20:32:35.367Z","avatar_url":"https://github.com/savi-lang.png","language":"Crystal","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg alt=\"Savi Logo\" src=\"./assets/savi-logo-rect.png\" width=\"454px\" /\u003e\n\n---\n\n**Savi** is a **fast** language for programmers\n  who are **passionate about their craft**.\n\n---\n\n**Savi** will **change the way you think** about programming\n  and equip you with the skills and tools you need\n    to tackle **more ambitious** technical challenges,\n    and **have fun** doing it.\n\n---\n\n**Savi** is here to help you write blazing-fast,\n  **concurrent** software that is **memory-safe** and **data-race-free**.\n\n---\n\n## Background\n\n**Savi** is an actor-oriented programming language using the [Pony](https://www.ponylang.io/) runtime. Like Pony, **Savi** has a unique type system that enforces concurrency-safety and memory-safety properties at compile time.\n\nLike many other modern compiled languages, **Savi** uses [LLVM](https://llvm.org/) to compile to a wide variety of native targets.\n\nOur goal is to make **Savi** approachable and fun, as well as powerful and extensible.\n\nWe are a small team of passionate volunteers working to bring this project to full fruition. If this vision sounds interesting to you, we'd love for you to [reach out in our chat](https://savi.zulipchat.com/) and get involved.\n\n## Try It!\n\nThe easiest way to try Savi is to use [asdf version manager](https://asdf-vm.com/), which allows you to install and manage versions for a variety of languages/runtimes, including Savi. After [installing asdf](https://asdf-vm.com/guide/getting-started.html#_1-install-dependencies), run the following commands to get Savi up and running:\n\n```sh\n# Add the Savi plugin to asdf.\nasdf plugin add savi https://github.com/savi-lang/asdf-savi.git\n\n# Download and install the latest version of Savi.\nasdf install savi latest\n\n# Select the latest version of Savi as the one to use globally in your shell.\nasdf global savi latest\n\n# Prove the installation with a simple program.\nsavi eval 'env.out.print(\"Savi is installed!\")'\n```\n\nOnce Savi is installed, you can enter any directory with a `manifest.savi` file in it and run the `savi` command there to compile one of the manifests defined in it, resulting in an executable binary program in a `./bin` folder with the same name as that targeted manifest.\n\nAlternatively, you can invoke `savi run` to both compile and immediately run the program.\n\nInvoke `savi --help` to learn about more available commands.\n\nIf you're a VS Code user, you may be interested to install our [language extension for that editor](./tooling/vscode), which includes both syntax highlighting and some Intellisense features via using the docker image as an LSP server.\n\nWe also have [a vim/nvim extension](./tooling/coc-nvim) as well.\n\nFinally, if you want to contribute to Savi, read on through the next two sections for information on how to find work, as well some of the basic development commands.\n\n## Contributing\n\nLooking for ways to help? [Here's a link that shows issue tickets filtered by those that should be ready to work on](https://github.com/savi-lang/savi/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+-label%3ABLOCKED+-label%3A%22complexity+4%3A+scary%22+-label%3A%22needs+design%22).\n\nYou can also filter by complexity label to try to find something that's the right level of challenge and time commitment for you.\n\nIf you're a new contributor looking for some guidance, please reach out to us [in this chat room](https://savi.zulipchat.com/) to introduce yourself and even schedule pairing sessions where we can help you understand parts of the compiler or language that you're interested in learning more about.\n\nWe think you'll find it exciting to join us at this stage of our work, where there is already enough working that you can get things done and produce a tangible result, but it's early enough that you can have a strong impact on the future of the language and the community.\n\nWe are excited to welcome all contributors that bring a positive attitude, regardless of their level of experience. [Join us!](https://savi.zulipchat.com/)\n\n## Developing\n\nTo work on this project and build the Savi compiler from source, you'll need `make`, `clang`, and `crystal` installed (look at `shard.yml` to see the correct version of Crystal that is officially supported). You may also want to have `lldb` for debugging.\n\nTo get started, clone the project to your development machine, then run one of the following commands within the project working directory, or consult the `Makefile` for more available commands. Note that the first time you run one of these commands it will take longer, as it will need to download some static dependencies and build the compiler for the first time.\n\n- Run `make spec.all` to run the full test suite, or refer the Makefile for information about runnning more specific sets of specs.\n\n- Run `make format.check` to check `*.savi` source files for formatting rule violations, or `make format` to fix them automatically.\n\n- Run `make example dir=\"/opt/code/examples/adventofcode/2018` to compile and run from the sources in `./examples/adventofcode/2018` directory (or similarly for any other example code directory).\n\nAlternatively, you can develop within the confines of a docker container, so that no development dependencies are needed other than `docker` itself. To do so, first run `docker/make ready` to run up a development container, then use `docker/make` instead of `make` to run any of the commands mentioned above (for example, `docker/make test`), which will run that command inside of the development container.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsavi-lang%2Fsavi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsavi-lang%2Fsavi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsavi-lang%2Fsavi/lists"}