Skip to content

Instantly share code, notes, and snippets.

@AnthonyLzq
Created December 12, 2021 18:58
Show Gist options
  • Save AnthonyLzq/f5059d1478cd99936ad572c4284004a5 to your computer and use it in GitHub Desktop.
Save AnthonyLzq/f5059d1478cd99936ad572c4284004a5 to your computer and use it in GitHub Desktop.
Use global variable in Node.js <= 14
import { CustomNodeJSGlobal } from "/direction/to/global.variables/file"
declare const global: CustomNodeJSGlobal
global.myGlobalVariable = 'Hi mom, look at me, I am global!'
console.log({ myGlobalVariable: global.myGlobalVariable })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment