Elsa is a minimal, fast and secure runtime for Javascript and Typescript written in Go

Kalinin Dmitry
1 min readSep 30, 2020

Features

  • URL based imports.
  • No fs, net access unless specified.
  • Compliant to web standards.
  • Supports TypeScript.
  • Module caching.
  • Bundle your script into a single file.
  • Create a standalone executable for your bundles.

Getting Started

Try running a simple program:

// hello.ts
import { hello } from "https://x.nest.land/arweave-hello@0.0.2/mod.ts";
hello("Elsa");> elsa run hello.ts
Hello, Elsa

--

--