-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow running JavaScript workers with async methods
- Loading branch information
1 parent
a948002
commit ec2fc6f
Showing
5 changed files
with
88 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Using an async function to reply! | ||
async function handle(request) { | ||
if (request.method != "GET") { | ||
// Don't allow other methods. | ||
// Here you can see how to return a custom status | ||
return new Response("Method not allowed", { | ||
status: 405 | ||
}); | ||
} | ||
|
||
// Body response | ||
const body = `<!DOCTYPE html> | ||
<head> | ||
<title>Wasm Workers Server</title> | ||
<meta name="viewport" content="width=device-width,initial-scale=1"> | ||
<meta charset="UTF-8"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css"> | ||
<style> | ||
body { max-width: 1000px; } | ||
main { margin: 5rem 0; } | ||
h1, p { text-align: center; } | ||
h1 { margin-bottom: 2rem; } | ||
pre { font-size: .9rem; } | ||
pre > code { padding: 2rem; } | ||
p { margin-top: 2rem; } | ||
</style> | ||
</head> | ||
<body> | ||
<main> | ||
<h1>Hello from Wasm Workers Server 👋</h1> | ||
<pre><code>Replying to ${request.url} | ||
Method: ${request.method} | ||
User Agent: ${request.headers.get("user-agent")} | ||
Payload: ${request.body || "-"}</code></pre> | ||
<p> | ||
This page was generated by a JavaScript (async worker) file running in WebAssembly. | ||
</p> | ||
</main> | ||
</body>`; | ||
|
||
// Build a new response | ||
let response = new Response(body); | ||
|
||
// Add a new header | ||
response.headers.set("x-generated-by", "wasm-workers-server"); | ||
|
||
return response; | ||
} | ||
|
||
addEventListener('fetch', event => { | ||
event.respondWith(handle(event.request)); | ||
}); |
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
Binary file not shown.
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