Would it be possible to share these scripts? I would love to see them, they sound really helpful/useful
addEventListener('fetch', event => { event.respondWith(handleRequest(event.request)) }) async function handleRequest(request) { const cookie = request.headers.get('Cookie'); if (cookie && cookie.includes('foo=bar')) { return await fetch(request); } else { return new Response('You must log in before accessing this content'); } }
https://gist.github.com/stickfigure/af592b1ce7f888c5b8a4efbe...
Would it be possible to share these scripts? I would love to see them, they sound really helpful/useful