Home

Awesome

Bagel 🥯

Bagel is a strongly-typed, JavaScript-targeted programming language designed around two main ideas:

  1. Pure functions and stateful procedures are separate concepts. Functions cannot affect app state, and procedures cannot return values.
  2. Reactivity is built-in at the language level. All mutable state (variables, etc) can be observed and reacted to automatically by the rest of the app. This is naturally relevant to front-end UIs, but it's useful for other things as well. For an introduction to the general concept, see this blog post.

Other goals include:

Blog posts on the language:

Trying it out

Note! Bagel is still pre-v0.1 and constantly in flux. No guarantees are made about anything continuing to work the way it does right now, or even working at all right now. These instructions are purely for the curious!

Bagel runs on Deno, so you'll first need that installed.

When it's ready for wide use, the Bagel compiler and tooling will be compiled together with the Deno runtime into a standalone executable, so you won't have to install Deno separately.

If you're using VSCode, there's a (very much in-progress) extension here which will provide some basic syntax highlighting. Included in the repo are scripts for automatically installing the extension into VSCode on Windows or macOS (it's not available on the marketplace yet).

You can run the Bagel compiler directly via Deno, but that can be a little annoying, so compiler/run.sh and compiler/run.bat are provided. For the optimal experience, I recommend symlinking one of these scripts into your path under the name bagel.

With that, you should be able to do the following:

bagel build tests/todo-app

And then you can open tests/todo-app/index.html in a web browser and see a functioning todo app.