forked from wasmerio/wasmer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request wasmerio#363 from wasmerio/improvements
Improvements fix: Automatically fix up the `wasmer_js_bg.wasm` URL when loading from `unpkg.com`
- Loading branch information
Showing
8 changed files
with
265 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# CDN with `coi-serviceworker` patch. | ||
|
||
This example showcases how to use the Wasmer SDK when using a CDN. | ||
|
||
In this case, by using the [`coi-serviceworker.js`](./coi-serviceworker.js) file you can automatically patch the required | ||
COOP/COEP headers using a service worker, so the SDK runs properly without requiring the server to send | ||
the COOP/COEP headers. | ||
|
||
This example should work in Github Pages and almost any other provider without modification. | ||
|
||
You can test this running locally also very easily: | ||
|
||
``` | ||
$ python3 -m http.server | ||
``` | ||
|
||
And then visit http://localhost:8000/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
// File taken from: https://github.com/gzuidhof/coi-serviceworker/tree/master | ||
/*! coi-serviceworker v0.1.7 - Guido Zuidhof and contributors, licensed under MIT */ | ||
let coepCredentialless = false; | ||
if (typeof window === 'undefined') { | ||
self.addEventListener("install", () => self.skipWaiting()); | ||
self.addEventListener("activate", (event) => event.waitUntil(self.clients.claim())); | ||
|
||
self.addEventListener("message", (ev) => { | ||
if (!ev.data) { | ||
return; | ||
} else if (ev.data.type === "deregister") { | ||
self.registration | ||
.unregister() | ||
.then(() => { | ||
return self.clients.matchAll(); | ||
}) | ||
.then(clients => { | ||
clients.forEach((client) => client.navigate(client.url)); | ||
}); | ||
} else if (ev.data.type === "coepCredentialless") { | ||
coepCredentialless = ev.data.value; | ||
} | ||
}); | ||
|
||
self.addEventListener("fetch", function (event) { | ||
const r = event.request; | ||
if (r.cache === "only-if-cached" && r.mode !== "same-origin") { | ||
return; | ||
} | ||
|
||
const request = (coepCredentialless && r.mode === "no-cors") | ||
? new Request(r, { | ||
credentials: "omit", | ||
}) | ||
: r; | ||
event.respondWith( | ||
fetch(request) | ||
.then((response) => { | ||
if (response.status === 0) { | ||
return response; | ||
} | ||
|
||
const newHeaders = new Headers(response.headers); | ||
newHeaders.set("Cross-Origin-Embedder-Policy", | ||
coepCredentialless ? "credentialless" : "require-corp" | ||
); | ||
if (!coepCredentialless) { | ||
newHeaders.set("Cross-Origin-Resource-Policy", "cross-origin"); | ||
} | ||
newHeaders.set("Cross-Origin-Opener-Policy", "same-origin"); | ||
|
||
return new Response(response.body, { | ||
status: response.status, | ||
statusText: response.statusText, | ||
headers: newHeaders, | ||
}); | ||
}) | ||
.catch((e) => console.error(e)) | ||
); | ||
}); | ||
|
||
} else { | ||
(() => { | ||
const reloadedBySelf = window.sessionStorage.getItem("coiReloadedBySelf"); | ||
window.sessionStorage.removeItem("coiReloadedBySelf"); | ||
const coepDegrading = (reloadedBySelf == "coepdegrade"); | ||
|
||
// You can customize the behavior of this script through a global `coi` variable. | ||
const coi = { | ||
shouldRegister: () => !reloadedBySelf, | ||
shouldDeregister: () => false, | ||
coepCredentialless: () => true, | ||
coepDegrade: () => true, | ||
doReload: () => window.location.reload(), | ||
quiet: false, | ||
...window.coi | ||
}; | ||
|
||
const n = navigator; | ||
const controlling = n.serviceWorker && n.serviceWorker.controller; | ||
|
||
// Record the failure if the page is served by serviceWorker. | ||
if (controlling && !window.crossOriginIsolated) { | ||
window.sessionStorage.setItem("coiCoepHasFailed", "true"); | ||
} | ||
const coepHasFailed = window.sessionStorage.getItem("coiCoepHasFailed"); | ||
|
||
if (controlling) { | ||
// Reload only on the first failure. | ||
const reloadToDegrade = coi.coepDegrade() && !( | ||
coepDegrading || window.crossOriginIsolated | ||
); | ||
n.serviceWorker.controller.postMessage({ | ||
type: "coepCredentialless", | ||
value: (reloadToDegrade || coepHasFailed && coi.coepDegrade()) | ||
? false | ||
: coi.coepCredentialless(), | ||
}); | ||
if (reloadToDegrade) { | ||
!coi.quiet && console.log("Reloading page to degrade COEP."); | ||
window.sessionStorage.setItem("coiReloadedBySelf", "coepdegrade"); | ||
coi.doReload("coepdegrade"); | ||
} | ||
|
||
if (coi.shouldDeregister()) { | ||
n.serviceWorker.controller.postMessage({ type: "deregister" }); | ||
} | ||
} | ||
|
||
// If we're already coi: do nothing. Perhaps it's due to this script doing its job, or COOP/COEP are | ||
// already set from the origin server. Also if the browser has no notion of crossOriginIsolated, just give up here. | ||
if (window.crossOriginIsolated !== false || !coi.shouldRegister()) return; | ||
|
||
if (!window.isSecureContext) { | ||
!coi.quiet && console.log("COOP/COEP Service Worker not registered, a secure context is required."); | ||
return; | ||
} | ||
|
||
// In some environments (e.g. Firefox private mode) this won't be available | ||
if (!n.serviceWorker) { | ||
!coi.quiet && console.error("COOP/COEP Service Worker not registered, perhaps due to private mode."); | ||
return; | ||
} | ||
|
||
n.serviceWorker.register(window.document.currentScript.src).then( | ||
(registration) => { | ||
!coi.quiet && console.log("COOP/COEP Service Worker registered", registration.scope); | ||
|
||
registration.addEventListener("updatefound", () => { | ||
!coi.quiet && console.log("Reloading page to make use of updated COOP/COEP Service Worker."); | ||
window.sessionStorage.setItem("coiReloadedBySelf", "updatefound"); | ||
coi.doReload(); | ||
}); | ||
|
||
// If the registration is active, but it's not controlling the page | ||
if (registration.active && !n.serviceWorker.controller) { | ||
!coi.quiet && console.log("Reloading page to make use of COOP/COEP Service Worker."); | ||
window.sessionStorage.setItem("coiReloadedBySelf", "notcontrolling"); | ||
coi.doReload(); | ||
} | ||
}, | ||
(err) => { | ||
!coi.quiet && console.error("COOP/COEP Service Worker failed to register:", err); | ||
} | ||
); | ||
})(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Wasmer JavaScript SDK</title> | ||
<script src="coi-serviceworker.js"></script> | ||
<script defer type="module"> | ||
import { init, Wasmer } from "https://unpkg.com/@wasmer/sdk@latest?module"; | ||
|
||
async function runPython() { | ||
const status = document.getElementById("status"); | ||
|
||
status.innerHTML = "Initializing..."; | ||
await init(); | ||
|
||
const packageName = "python/python"; | ||
status.innerHTML = `Fetching ${packageName}...`; | ||
const pkg = await Wasmer.fromRegistry(packageName); | ||
|
||
status.innerHTML = `Starting ${packageName}...`; | ||
const instance = await pkg.entrypoint.run({ | ||
args: ["-c", "print('Hello, World!')"], | ||
}); | ||
|
||
status.innerHTML = `Running ${packageName}...`; | ||
const { code, stdout } = await instance.wait(); | ||
|
||
status.innerHTML = `Exited with status code: ${code}`; | ||
const stdoutElement = document.getElementById("stdout"); | ||
stdoutElement.innerHTML = stdout; | ||
} | ||
|
||
runPython(); | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<h1 id="status"></h1> | ||
<pre><code id="stdout"></code></pre> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# CDN | ||
|
||
This example showcases how to use the Wasmer SDK when using a CDN. | ||
|
||
You'll need to set up the COOP/COEP headers when serving the html file, so it works | ||
properly in the broser: | ||
|
||
``` | ||
Cross-Origin-Embedder-Policy: require-corp | ||
Cross-Origin-Opener-Policy: same-origin | ||
``` | ||
|
||
If you are unable to modify the server to send this headers when serving the html file, | ||
please use the [cdn-coi-serviceworker](../cdn-coi-serviceworker/) example instead. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters