Skip to content

Instantly share code, notes, and snippets.

@4ov
Created June 6, 2021 17:57
Show Gist options
  • Save 4ov/5bfeac9fb6dfdb2afd76bb61d1ec3764 to your computer and use it in GitHub Desktop.
Save 4ov/5bfeac9fb6dfdb2afd76bb61d1ec3764 to your computer and use it in GitHub Desktop.
example of deno-fetcher usage
import Fetcher from 'https://raw.githubusercontent.com/4ov/deno-fetcher/main/mod.ts'
const app = new Fetcher();
app.get('/', (event)=>{
event.respondWith(new Response('hola'))
})
addEventListener('fetch', app.handle.bind(app))
@4ov
Copy link
Author

4ov commented Jun 6, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment