Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/witheve/Eve
Better tools for thought
https://github.com/witheve/Eve
database eve ide language programming-language
Last synced: 6 days ago
JSON representation
Better tools for thought
- Host: GitHub
- URL: https://github.com/witheve/Eve
- Owner: witheve
- License: apache-2.0
- Created: 2013-09-10T03:52:06.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-03-20T18:37:04.000Z (over 6 years ago)
- Last Synced: 2024-10-15T08:41:59.170Z (20 days ago)
- Topics: database, eve, ide, language, programming-language
- Language: TypeScript
- Homepage: http://witheve.com
- Size: 11 MB
- Stars: 7,165
- Watchers: 194
- Forks: 257
- Open Issues: 71
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-nodejs-projects - Eve - Eve is a set of tools to help us think. Currently, these tools include: a temporal query language, a compiler, and a database. (Developers)
- -awesome-nodejs-projects - Eve - Eve is a set of tools to help us think. Currently, these tools include: a temporal query language, a compiler, and a database. (Developers)
- awesome-nodejs-projects - Eve - Eve is a set of tools to help us think. Currently, these tools include: a temporal query language, a compiler, and a database. (Developers)
- my-awesome-github-stars - witheve/Eve - Better tools for thought (TypeScript)
- awesome-starred-test - witheve/Eve - Better tools for thought (TypeScript)
- awesome-nodejs-projects - Eve - Eve is a set of tools to help us think. Currently, these tools include: a temporal query language, a compiler, and a database. (Developers)
- starred-awesome - Eve - Better tools for thought (TypeScript)
- StarryDivineSky - witheve/Eve
- jimsghstars - witheve/Eve - Better tools for thought (TypeScript)
README
---
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.3 alpha, which is no longer under active development.**
## Getting Started with Eve v0.3 preview
Install [Node](https://nodejs.org/en/download/) for your platform, then clone and build the [Eve starter repository](https://github.com/witheve/eve-starter):
```
git clone [email protected]:witheve/eve-starter.git
cd eve-starter
npm install
```You can start the program switcher, which allows you to browse included example programs:
```
npm start
```Or you can run a specific program by providing its path as an argument:
```
npm start -- path/to/program.js
```## Integrating Eve into an existing project
You can get Eve as an npm package
```
npm install witheve@preview
```Then import Eve to use it in your project
```
import {Program} from "witheve";
```## Learning Eve
You can learn about Eve with the following resources:
- [Read the Quick Start Tutorial](http://play.witheve.com/) (use Chrome for best results)
- [Syntax Quick Reference](https://witheve.github.io/assets/docs/SyntaxReference.pdf)
- [Language Handbook (draft)](http://docs.witheve.com)Also, the [mailing list archive](https://groups.google.com/forum/#!forum/eve-talk) is a good resource for help and inspiration. In particular, the [Puzzles & Paradoxes series](https://groups.google.com/forum/#!searchin/eve-talk/Puzzles$20$26$20Paradoxes%7Csort:date) answers a lot of questions beginners face about the Eve langauge.
## Get Involved
### Join the Community
The Eve community is small but constantly growing, and everyone is welcome!
- Join or start a discussion on our [mailing list](https://groups.google.com/forum/#!forum/eve-talk).
- Impact the future of Eve by getting involved with our [Request for Comments](https://github.com/witheve/rfcs) process.
- Read our [development blog](http://incidentalcomplexity.com/).
- Follow us on [Twitter](https://twitter.com/with_eve).### How to Contribute
The best way to contribute right now is to write Eve code and report your experiences. [Let us know](https://groups.google.com/forum/#!forum/eve-talk) 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.
### How to File an Issue
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:
1. The steps needed to reproduce the bug
2. Your operating system and browser.
3. If applicable, the `.*eve` file that causes the bug.## License
Eve is licensed under the Apache 2.0 license, see [LICENSE](https://github.com/witheve/eve/blob/master/LICENSE) for details.
## Disclaimer
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](https://github.com/witheve/eve#how-to-file-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](https://groups.google.com/forum/#!forum/eve-talk) on the biggest changes.