Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.23 KB

README.md

File metadata and controls

41 lines (28 loc) · 1.23 KB

What's this?

This is an small experiment I did to try to run Javascript in a sandboxed environment.

To do this I use QuickJS compiled to WebAssembly. All the heavy lifting of running QuickJS on WASM is done on this library.

Running the thing

$ # inside this repository
$ yarn install
$ yarn start

Edit test-refactor-redux-reducers

What can be done?

Take a look at example code inside of src/ folder.

My take on this

What works:

  • run javascript code in isolation
  • push functions into the VM, (like console.log, or fetch)
  • extract results from the VM

Not so good yet:

  • very new projects, scarce docs, and not many people using it
  • it seems that not all of QuickJS is exposed to WASM
  • I had no success working with imports/require but I may be doing something wrong
  • async code doesn't seem not to be working

I need to take another look to the things that didn't work for me and maybe reach to other people to see if I'm doing something wrong, or if there's other work to be done on the glue parts.