Eve is a programming language based on years of research into building a human-first programming platform.
This repository hosts a preview of Eve v0.4 alpha, which is unfortunately no longer under development.
Start by installing Node for your platform, and Rust via the rustup
tool. Use rustup
to install the latest "nightly" build of Rust:
rustup install nightly
rustup default nightly
Then clone and build the Eve repository:
git clone git@github.com:Kodowa/eve-native.git
cd eve-native
npm install
You can start an Eve server running a given *.eve
file:
cargo run --bin server -- examples/test.eve libraries
This builds Eve and runs an Eve server at localhost:8081
, which hosts the program's output. Each connection will create a new instance of the supplied program(s).
Note: running cargo run
with the --release
flag will execute 10x - 30x faster, but will take longer to build:
cargo run --release --bin server -- examples/test.eve libraries
You can learn about Eve with the following resources:
- Read the Quick Start Tutorial (use Chrome for best results)
- Syntax Quick Reference
- Language Handbook (draft)
Also, the mailing list archive is a good resource for help and inspiration. In particular, the Puzzles & Paradoxes series answers a lot of questions beginners face about the Eve langauge.
The Eve community is small but constantly growing, and everyone is welcome!
- Join or start a discussion on our mailing list.
- Impact the future of Eve by getting involved with our Request for Comments process.
- Read our development blog.
- Follow us on Twitter.
The best way to contribute right now is to write Eve code and report your experiences. Let us know what kind of programs you’re trying to write, what barriers you are facing in writing code (both mental and technological), and any errors you encounter along the way.
Please file any issues in this repository. Before you file an issue, please take a look to see if the issue already exists. When you file an issue, please include:
- The steps needed to reproduce the bug
- Your operating system and browser.
- If applicable, the
.*eve
file that causes the bug.
Eve is licensed under the Apache 2.0 license, see LICENSE for details.
Eve is currently at a very early, "alpha" stage of development. This means the language, tools, and docs are largely incomplete, but undergoing rapid and continuous development. If you encounter errors while using Eve, don't worry: it's likely our fault. Please bring the problem to our attention by filing an issue.
As always, with pre-release software, don’t use this for anything important. We are continuously pushing to this codebase, so you can expect very rapid changes. At this time, we’re not prepared make the commitment that our changes will not break your code, but we’ll do our best to update you on the biggest changes.