Skip to content

Instantly share code, notes, and snippets.

@Code-Hex
Last active July 6, 2022 12:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Code-Hex/5eb472e1f1df34cbc68e8bbf89a30adb to your computer and use it in GitHub Desktop.
Save Code-Hex/5eb472e1f1df34cbc68e8bbf89a30adb to your computer and use it in GitHub Desktop.
Cloudflare Workers の global 変数一覧を確認する方法
addEventListener('fetch', (event: FetchEvent) => {
// @ts-ignore
console.log({ ...global })
event.respondWith(verifyJWT(event.request))
})
@Code-Hex
Copy link
Author

Code-Hex commented Jul 6, 2022

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