Hybrid visual and textual functional programming.
Go to file
Pavel Marek 5a7ad6bfe4
Upgrade enso to GraalVM for jdk 21 (#7991)
Upgrade to GraalVM JDK 21.
```
> java -version
openjdk version "21" 2023-09-19
OpenJDK Runtime Environment GraalVM CE 21+35.1 (build 21+35-jvmci-23.1-b15)
OpenJDK 64-Bit Server VM GraalVM CE 21+35.1 (build 21+35-jvmci-23.1-b15, mixed mode, sharing)
```

With SDKMan, download with `sdk install java 21-graalce`.

# Important Notes
- After this PR, one can theoretically run enso with any JRE with version at least 21.
- Removed `sbt bootstrap` hack and all the other build time related hacks related to the handling of GraalVM distribution.
- `project-manager` remains backward compatible - it can open older engines with runtimes. New engines now do no longer require a separate runtime to be downloaded.
- sbt does not support compilation of `module-info.java` files in mixed projects - https://github.com/sbt/sbt/issues/3368
- Which means that we can have `module-info.java` files only for Java-only projects.
- Anyway, we need just a single `module-info.class` in the resulting `runtime.jar` fat jar.
- `runtime.jar` is assembled in `runtime-with-instruments` with a custom merge strategy (`sbt-assembly` plugin). Caching is disabled for custom merge strategies, which means that re-assembly of `runtime.jar` will be more frequent.
- Engine distribution contains multiple JAR archives (modules) in `component` directory, along with `runner/runner.jar` that is hidden inside a nested directory.
- The new entry point to the engine runner is [EngineRunnerBootLoader](https://github.com/enso-org/enso/pull/7991/files#diff-9ab172d0566c18456472aeb95c4345f47e2db3965e77e29c11694d3a9333a2aa) that contains a custom ClassLoader - to make sure that everything that does not have to be loaded from a module is loaded from `runner.jar`, which is not a module.
- The new command line for launching the engine runner is in [distribution/bin/enso](https://github.com/enso-org/enso/pull/7991/files#diff-0b66983403b2c329febc7381cd23d45871d4d555ce98dd040d4d1e879c8f3725)
- [Newest version of Frgaal](https://repo1.maven.org/maven2/org/frgaal/compiler/20.0.1/) (20.0.1) does not recognize `--source 21` option, only `--source 20`.
2023-11-17 18:02:36 +00:00
.cargo Bump rustc to nightly-2023-01-12 (#4053) 2023-02-02 23:05:25 +00:00
.github Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
.idea/runConfigurations Use Enso Font (#7516) 2023-08-17 18:36:12 +00:00
.vscode Icon and documentation for Enso VSCode extension (#8051) 2023-10-15 04:43:26 +00:00
actions/setup-build misc: bump wasm-pack (#3983) 2022-12-14 18:45:39 +01:00
app Fix component browser interactions. (#8303) 2023-11-17 15:28:45 +00:00
build Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
distribution Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
docs Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
engine Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
integration-test Introducing new notifications to the GUI (#7458) 2023-08-04 16:48:23 +02:00
lib Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
project Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
std-bits Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
test Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
tools Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
.eslintignore Shaders precompilation (#4003) 2023-01-27 01:09:09 +01:00
.git-blame-ignore-revs Layer/Rectangle improvements (#6247) 2023-04-19 09:06:20 -07:00
.gitattributes Eliminate VCS TimeoutExceptions on startup (#8080) 2023-10-18 09:34:08 +00:00
.gitignore New GUI/IDE build script support (#7832) 2023-10-03 20:07:20 +02:00
.ignore Refactoring: merge utils into prelude; merge workspaces. (#3151) 2021-11-10 14:36:08 +01:00
.jvmopts Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
.node-version Use .node-version for pinning Node.js version (#6057) 2023-03-23 12:00:08 +00:00
.npmrc [Gui2] Opening projects and language server connection (#7813) 2023-09-22 03:43:25 +00:00
.prettierignore Dashboard tests (#7656) 2023-10-11 10:24:33 +00:00
.prettierrc.yaml Fix prettier config; run prettier (#6132) 2023-03-31 14:49:34 +02:00
.scalafmt.conf Bump SBT and Scalafmt (#1203) 2020-10-22 16:12:28 +02:00
build-config.yaml New GUI/IDE build script support (#7832) 2023-10-03 20:07:20 +02:00
build.sbt Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
Cargo.lock Parser TS bindings (#7881) 2023-10-11 13:04:38 +00:00
Cargo.toml line:col positions in parser (#8203) 2023-11-08 16:53:39 +00:00
CHANGELOG.md Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
clippy.toml Build script merge (#3743) 2022-10-10 23:38:48 +02:00
LICENSE Set up the repository (#1) 2019-06-11 17:07:54 +01:00
package-lock.json Bump electron-builder on CI macOS runners. (#8284) 2023-11-16 19:07:29 +00:00
package.json Remove incorrect dependencies in the root package.json (#8023) 2023-10-11 16:24:22 +00:00
README.md Consistent naming of visualization (#7124) 2023-06-26 17:04:35 +00:00
RELEASES.md Add API for component groups (#3286) 2022-02-24 15:41:14 +03:00
run feat(183557950): Add ProjectsGrid View for Cloud Dashboard (#3857) 2022-12-04 05:41:56 +01:00
run.cmd Cloud dispatch & fixes (#3843) 2022-11-09 00:15:26 +01:00
run.ps1 Release process (#3909) 2022-12-02 02:56:22 +01:00
rust-toolchain.toml Bump rustc to nightly-2023-01-12 (#4053) 2023-02-02 23:05:25 +00:00
rustfmt.toml Build script merge (#3743) 2022-10-10 23:38:48 +02:00

Chat Actions Status Actions Status License License


Enso.org. Get insights you can rely on. In real time.

Enso is an award-winning interactive programming language with dual visual and textual representations. It is a tool that spans the entire stack, going from high-level visualization and communication to the nitty-gritty of backend services, all in a single language. Watch the following introduction video to learn what Enso is, and how it helps companies build data workflows in minutes instead of weeks.


Screenshot 2021-04-15 at 12 16 32

Enso's Features

Turning your data into knowledge is slow and error-prone. You cant trust tools that dont embrace best practices and provide quality assurance. Enso redefines the way you can work with your data: it is interactive, provides intelligent assistance, and was designed on a strong mathematical foundation, so you can always trust the results you get.

      Intelligent suggestions of possible next steps. Build workflows in minutes instead of weeks.
      Enso analyses the data, suggests possible next steps, and displays related help and examples. It lets you build dashboards, RPA workflows, and apps, with no coding required. Enso ships with a robust set of libraries, allowing you to work with local files, databases, HTTP services, and other applications in a seamless fashion.
      Learn more →
      Reproducible, trustworthy results.
      Versioning and visual data quality management allow you to trust the results that you get.
      Learn more →
      A powerful, purely functional language. Both visual and textual.
      Enso incorporates many recent innovations in data processing and programming language design to allow you to work interactively and trust the results that you get. It is a purely functional programming language with higher-order functions, user-defined algebraic datatypes, pattern-matching, and two equivalent representations that you can switch between on-demand.
      Learn more →
      Mix languages with close-to-zero interop overhead.
      Import any library from Enso, Java, JavaScript, R, or Python, and use functions, callbacks, and data types without any wrappers. Enso uses GraalVM to compile them to the same instruction set with a unified memory model.
      Learn more →
      A cutting-edge visualization engine.
      Enso is equipped with a highly-tailored WebGL visualization engine capable of displaying many millions of data points at 60 frames per second in a web browser. Currently, Enso includes a set of core data visualizations out of the box, and you can easily extend it with libraries such as D3.js, Three.js, Babylon.js, deck.gl, VTK.js, Potree, and many more.
      Learn more →
      Runs everywhere.
      Enso is available on macOS, Windows, and GNU/Linux, and the Enso IDE runs on web-native technologies. In time, you'll be able to run it in the web-browser, giving even your tablet and phone access to your data.
      Learn more →

Getting Started

An example Enso graph



Enso Source Code

If you want to start using Enso, please see the download links in the getting started section above. Alternatively, you can get the IDE here. This section is intended for people interested in contributing to the development of Enso.

Enso is a community-driven open source project which is, and will always be, open and free to use. Join us, help us to build it, and spread the word!


Project Components

Enso consists of several sub projects:

  • Enso Engine: The Enso Engine is the set of tools that implement the Enso language and its associated services. These include the Enso interpreter, a just-in-time compiler and runtime (both powered by GraalVM), and a language server that lets you inspect Enso code as it runs. These components can be used on their own as command line tools.

  • Enso IDE: The Enso IDE is a desktop application that allows working with the visual form of Enso. It consists of an Electron application, a high performance WebGL UI framework, and the searcher which provides contextual search, hints, and documentation for all of Enso's functionality.


License

The Enso Engine is licensed under the Apache 2.0, as specified in the LICENSE file. The Enso IDE is licensed under the AGPL 3.0, as specified in the LICENSE file.

This license set was chosen to provide you with complete freedom to use Enso, create libraries, and release them under any license of your choice, while also allowing us to release commercial products on top of the platform, including Enso Cloud and Enso Enterprise server managers.


Contributing to Enso

Enso is a community-driven open source project which is and will always be open and free to use. We are committed to a fully transparent development process and highly appreciate every contribution. If you love the vision behind Enso and you want to redefine the data processing world, join us and help us track down bugs, implement new features, improve the documentation or spread the word!

If you'd like to help us make this vision a reality, please feel free to join our chat, and take a look at our development and contribution guidelines. The latter describes all the ways in which you can help out with the project, as well as provides detailed instructions for building and hacking on Enso.

If you believe that you have found a security vulnerability in Enso, or that you have a bug report that poses a security risk to Enso's users, please take a look at our security guidelines for a course of action.


Enso's Design

If you would like to gain a better understanding of the principles on which Enso is based, or just delve into the why's and what's of Enso's design, please take a look in the docs/ folder. It is split up into subfolders for each component of Enso. You can view this same documentation in a rendered form at the developer docs website.

This folder also contains a document on Enso's design philosophy, that details the thought process that we use when contemplating changes or additions to the language.

This documentation will evolve as Enso does, both to help newcomers to the project understand the reasoning behind the code, and also to act as a record of the decisions that have been made through Enso's evolution.