Run modern modules with Web Platform primitives and a broad set of Node-compatible APIs.
elide hello.jsElide runs JavaScript, TypeScript, and Python directly from source. Bring a file, choose a command, and start with the runtime and APIs already inside the Elide binary.
Confirm the binary is available, or install Elide before running the examples below.Installation guide
elide --versionStart from the language already in your hand. Elide detects JavaScript and TypeScript from the source extension; Python uses its familiar explicit entrypoint.
Run modern modules with Web Platform primitives and a broad set of Node-compatible APIs.
elide hello.jsExecute TypeScript source directly for scripts, services, and command-line tools—no build step first.
elide hello.tsUse the embedded Python runtime for pure-Python scripts, standard-library code, and CLI workflows.
elide python hello.pyCreate a TypeScript file that reads one argument. Elide accepts the type annotation directly, exposes familiar process arguments, and executes the file without a separate compile command.
const [name = "world"] = process.argv.slice(2);const message: string = `Hello, ${name}!`; console.log(message);console.log("TypeScript is running directly on Elide.");
elide hello.ts -- teamHello, team! TypeScript is running directly on Elide.
The short command hides the plumbing, not the model. Elide keeps the path from source to execution predictable across supported languages.
The filename selects JavaScript, TypeScript, or Python without a separate runtime flag.
Elide launches its embedded runtime instead of handing the file to a system installation.
Your code gets language-native modules plus compatible Web, Node, or Python interfaces.
Start with platform primitives instead of learning an Elide-only application model.
The same source can grow from a script into a watched local service.
Make runtime assumptions explicit before an application reaches production.