Skip to content
@elide-dev

elide

the next version of bun

Elide

Python 3.11.x


Elide is like Node or Python. Use it to run things:

> elide ./my-code.{ts,js,py,kts,kt}

You can use Node APIs. You can even mix languages:

// sample.mts

// use node apis
import { readFileSync } from "node:fs"

// interoperate across languages 
import sample from "./sample.py"

// this is typescript - no build step needed first, like deno or bun
const x: number = 42;

console.log(sample.greeting() + ` The answer is ${x}`);
# sample.py

def greeting(name = "Elide"):
  return f"Hello, {name}!"
> elide ./sample.mts
Hello, Elide! The answer is 42

Learn more at elide.dev

Access the docs at elide.help

Pinned Loading

  1. elide elide Public

    fast multi-lang runtime

    558 39

  2. setup-elide setup-elide Public

    Sets up Elide in a GitHub action

    TypeScript 4 2

  3. gradle gradle Public

    Experimental Gradle plugin for Elide

    Java 29 2

  4. maven maven Public

    Maven plugin for using Elide

    Kotlin 3

Repositories

Showing 10 of 70 repositories

Top languages

Loading…

Most used topics

Loading…