A lightweight sandbox runtime for short-lived scripts and constrained execution

Posted by TomatoKindly7082@reddit | programming | View on Reddit | 4 comments

I’ve been experimenting with a lightweight sandbox runtime designed for short-lived scripts.

The project started from a simple question:
most existing runtimes are built for humans writing long-lived applications, but what would a runtime look like if it was optimized for disposable/generated scripts instead?

Some things I’ve been exploring:

Right now I’m mostly trying to understand the tradeoffs around:

The goal isn’t to replace Python or JavaScript, but to experiment with a smaller execution layer for ephemeral scripts.

I’d genuinely appreciate feedback from people interested in runtimes, interpreters, sandboxing, or systems programming — especially criticism around the design decisions and limitations.