rogchap / v8go

Execute JavaScript from Go
https://rogchap.com/v8go
BSD 3-Clause "New" or "Revised" License
3.21k stars 221 forks source link

working really well. but... #408

Open sprappcom opened 5 months ago

sprappcom commented 5 months ago

is there any possibility to support like cloudflare ES stuff? https://developers.cloudflare.com/workers/examples/return-html/

export default { async fetch(request) { const html = `<!DOCTYPE html>

Hello World

This markup was generated by a Cloudflare Worker.

`; return new Response(html, { headers: { "content-type": "text/html;charset=UTF-8", }, }); }, };