rogchap / v8go

Execute JavaScript from Go

Home Page:https://rogchap.com/v8go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

working really well. but...

sprappcom opened this issue · comments

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> <body> <h1>Hello World</h1> <p>This markup was generated by a Cloudflare Worker.</p> </body>;

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

},
};