• Stars
    star
    155
  • Rank 238,929 (Top 5 %)
  • Language
    Crystal
  • License
    BSD 3-Clause "New...
  • Created almost 6 years ago
  • Updated 19 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A fast language for programmers who are passionate about their craft.

Savi Logo


Savi is a fast language for programmers who are passionate about their craft.


Savi will change the way you think about programming and equip you with the skills and tools you need to tackle more ambitious technical challenges, and have fun doing it.


Savi is here to help you write blazing-fast, concurrent software that is memory-safe and data-race-free.


Background

Savi is an actor-oriented programming language using the Pony runtime. Like Pony, Savi has a unique type system that enforces concurrency-safety and memory-safety properties at compile time.

Like many other modern compiled languages, Savi uses LLVM to compile to a wide variety of native targets.

Our goal is to make Savi approachable and fun, as well as powerful and extensible.

We 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 and get involved.

Try It!

The easiest way to try Savi is to use asdf version manager, which allows you to install and manage versions for a variety of languages/runtimes, including Savi. After installing asdf, run the following commands to get Savi up and running:

# Add the Savi plugin to asdf.
asdf plugin add savi https://github.com/savi-lang/asdf-savi.git

# Download and install the latest version of Savi.
asdf install savi latest

# Select the latest version of Savi as the one to use globally in your shell.
asdf global savi latest

# Prove the installation with a simple program.
savi eval 'env.out.print("Savi is installed!")'

Once 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.

Alternatively, you can invoke savi run to both compile and immediately run the program.

Invoke savi --help to learn about more available commands.

If you're a VS Code user, you may be interested to install our language extension for that editor, which includes both syntax highlighting and some Intellisense features via using the docker image as an LSP server.

We also have a vim/nvim extension as well.

Finally, 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.

Contributing

Looking for ways to help? Here's a link that shows issue tickets filtered by those that should be ready to work on.

You can also filter by complexity label to try to find something that's the right level of challenge and time commitment for you.

If you're a new contributor looking for some guidance, please reach out to us in this chat room 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.

We 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.

We are excited to welcome all contributors that bring a positive attitude, regardless of their level of experience. Join us!

Developing

To 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.

To 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.

  • Run make spec.all to run the full test suite, or refer the Makefile for information about runnning more specific sets of specs.

  • Run make format.check to check *.savi source files for formatting rule violations, or make format to fix them automatically.

  • 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).

Alternatively, 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.

More Repositories

1

action-build-release

Build Savi application release binaries for multiple platforms from a single CI runner.
4
star
2

PEG

Parsing Expression Grammars for the Savi standard library.
2
star
3

library-index

An index of known Savi libraries and their download locations.
2
star
4

Spec

The official testing framework for Savi.
2
star
5

llvm-static

CI/CD automation for building LLVM/clang/lld static libraries for a variety of supported platforms.
Makefile
2
star
6

StdIn

Read from the program's standard input stream using the Savi standard library.
1
star
7

TCP

TCP networking implementation for the Savi standard library.
1
star
8

Timer

1
star
9

action-pull-from-base

A GitHub Action to automatically create pull requests from a changing upstream base repository.
TypeScript
1
star
10

JSON

JSON reading and writing for the Savi standard library, written in pure Savi.
1
star
11

File

Shell
1
star
12

HTTPServer

An HTTP server implementation for the Savi standard library, written in pure Savi.
1
star
13

Logger

An application-level logging library in the Savi standard library.
1
star
14

IPAddress

A Savi standard library for IPv4 and IPv6 address parsing, printing, and manipulation.
1
star
15

Random

A standard interface for the varying random number generators in the Savi standard library.
1
star
16

savi-lang.github.io

Public site for documentation and general information.
HTML
1
star
17

Map

Hash Map data structures for the Savi standard library.
1
star
18

OSError

OS-specific error numbers exposed for the Savi standard library.
1
star
19

Unicode

Unicode-aware operations for the Savi standard library.
1
star
20

base-standard-library

A base repository for Savi language libraries, with common CI actions configured.
1
star
21

Regex

Regular expressions for the Savi standard library, written in pure Savi.
1
star
22

ByteStream

Read from and write to byte streams using the Savi standard library.
1
star
23

IO

Common mechanisms for the Savi standard library for dealing with external input/output streams.
1
star
24

action-install

A GitHub Action to install Savi in the current job runner.
1
star
25

asdf-savi

Savi plugin for the asdf version manager, to facilitate installing the Savi compiler.
Shell
1
star
26

DeterministicRandom

Deterministic pseudo-random number generation for the Savi standard library.
1
star
27

Benchmark

The official benchmarking framework for Savi.
1
star
28

Time

Time and date manipulation for the Savi standard library.
1
star