Skip to content

Instantly share code, notes, and snippets.

@nathanclevenger
Last active September 13, 2022 16:53
Show Gist options
  • Save nathanclevenger/44ce22068cca9a69ee6037cdfb9753b2 to your computer and use it in GitHub Desktop.
Save nathanclevenger/44ce22068cca9a69ee6037cdfb9753b2 to your computer and use it in GitHub Desktop.
Test ESBuild HTTP Import
export default obj => new Response(JSON.stringify(obj, null, 2))
import json from 'https://gist.githubusercontent.com/nathanclevenger/44ce22068cca9a69ee6037cdfb9753b2/raw/0454457869df526b490f9f2fb31d2ece2ae9b2e2/module.js'
import { Hono } from 'https://deno.land/x/hono/mod.ts'
export default {
fetch: req => json({ hello: 'world' })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment