FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Original HTTPS Page]

elide · GitHub

elide

the next runtime


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

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

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

    566 41

  2. setup-elide setup-elide Public

    Sets up Elide in a GitHub action

    TypeScript 5 2

  3. gradle gradle Public

    Gradle plugin for Elide

    Java 29 2

  4. maven maven Public

    Maven plugin for using Elide

    Kotlin 3

  5. rules_elide rules_elide Public

    bazel rules for elide

    Starlark 2

Repositories

Loading
Type
Select type
All Public Sources Forks Archived Mirrors Templates
Language
Select language
All C++ Go HTML Java JavaScript Kotlin Markdown Protocol Buffer Python Ruby Rust Shell Starlark TypeScript XML Zig
Sort
Select order
Last updated Name Stars
Showing 10 of 82 repositories

Top languages

Loading…

Most used topics

Loading…


Back | FazBrowse Home | New Git URL