We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import { serve } from "https://deno.land/std@v0.11.0/http/server.ts"; const s = serve("0.0.0.0:8000"); async function main() { for await (const req of s) { const body = await req.body() console.log('Request body:', body) req.respond({ body: new TextEncoder().encode("Hello World\n") }); } } main();
The text was updated successfully, but these errors were encountered:
fix: encode URI components (denoland#538)
9bf462e
This change applies `encodeURIComponent()` to the dynamic parts of the share URLs.
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: