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 apisimport{readFileSync}from"node:fs"// interoperate across languages importsamplefrom"./sample.py"// this is typescript - no build step needed first, like deno or bunconstx: number=42;console.log(sample.greeting()+` The answer is ${x}`);# sample.pydefgreeting(name="Elide"):
returnf"Hello, {name}!"> elide ./sample.mts
Hello, Elide! The answer is 42Learn more at elide.dev
Access the docs at elide.help
