StarlingMonkey icon indicating copy to clipboard operation
StarlingMonkey copied to clipboard

The StarlingMonkey JS runtime

Results 17 StarlingMonkey issues
Sort by recently updated
recently updated
newest added

Trying to build a project using StarlingMonkey as a sub-project. Any helpful hints would be appreciated. ( Cmake is not my goto tool ) I was able to build and...

Properly integrating WPT into the CI run is still a TODO.

As much as possible, all errors should provide a named and line-numbered source snippet indicating the location of the error. Because we build sources directly, we can provide rich stacks...

wasi-sdk doesn't provide aarch64 releases, so the magic dependency fetching doesn't work. I'm not sure if there's an easy way to override sources on a per-dependency basis, but if there...

I tried enabling the fetch path in the smoke test component here - https://github.com/fermyon/StarlingMonkey/blob/main/tests/smoke.js#L135. But on the `await textP` line I get the following error: ``` stdout [1] :: Log:...

I really like the static nature of source resolution during Wizering as an alternative to bundling. Further to this, it could be worth implementing the full Node.js resolution algorithm to...

The `Performance` class exists, but the `performance` global itself is not being defined.

When trying to run the following code ```javascript addEventListener('fetch', (event) => handleRequest(event)); async function handleRequest(event) { try { let res = await fetch("https://echo.free.beeceptor.com", { method: "POST", headers: {}, body: "hello...

I was attempting to send an outbound request to `https://echo.free.beeceptor.com` by modifying `tests/smoke.js` ```javascript ... let p = fetch("https://example.com"); let test = fetch("https://echo.free.beeceptor.com") // let p2 = fetch(url); // let...