Skip to content

Instantly share code, notes, and snippets.

@4ov
Last active October 12, 2021 14:24
Show Gist options
  • Save 4ov/4177a10834b643ff4bad3e7a4dfc5a4f to your computer and use it in GitHub Desktop.
Save 4ov/4177a10834b643ff4bad3e7a4dfc5a4f to your computer and use it in GitHub Desktop.
deno deploy env test
import { h, json, jsx, serve } from "https://deno.land/x/sift/mod.ts";
serve({
"/set": () => {
localStorage.x = `${Math.random()}`
return new Response("hola")
},
"/" : ()=>{
return new Response(`${localStorage.x}`)
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment