NeilFraser / JS-Interpreter

A sandboxed JavaScript interpreter in JavaScript.
Apache License 2.0
1.96k stars 352 forks source link

This repo is being mocked in r/ProgrammerHumor. #242

Closed alixsep closed 1 year ago

alixsep commented 1 year ago

This is the link to the post: https://www.reddit.com/r/ProgrammerHumor/comments/10cmtz4/why_are_programmers_like_this/ image

I have no intention to any means by opening this issue. Doing it just so you don't miss it.

NeilFraser commented 1 year ago

Well, that's fun. Thanks for pointing it out.

For anyone on that thread who is interested, the point of this repo is to:

a) securely sandbox JavaScript so that untrusted code may be safely executed. b) JavaScript can be multi-threaded. c) code can be executed step-by-step with pauses (useful in real-time games). d) execution may be serialized and saved, then restored and resumed at a later date. e) code can be executed backwards.

JS-Interpreter quietly powers a lot of applications out there. Especially at Google.