Skip to content

Instantly share code, notes, and snippets.

@serebano
Created August 7, 2024 15:32
Show Gist options
  • Save serebano/1f9eccc244aef4a1bfa3440f7aacd05b to your computer and use it in GitHub Desktop.
Save serebano/1f9eccc244aef4a1bfa3440f7aacd05b to your computer and use it in GitHub Desktop.
Import remote module using fetch. Works in browser/node/deno/bun
fetch("https://gist.github.com/serebano/83304400d6141751c38202bb66d14f83/raw")
.then(async (r) => (await import(`data:application/javascript;base64,${btoa(await r.text())}`)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment