Skip to content

Instantly share code, notes, and snippets.

@tatsuyasusukida
Last active April 20, 2022 06:22
Show Gist options
  • Save tatsuyasusukida/96d0ae06718a5a2ad7f4e0709ca1a7aa to your computer and use it in GitHub Desktop.
Save tatsuyasusukida/96d0ae06718a5a2ad7f4e0709ca1a7aa to your computer and use it in GitHub Desktop.
Gist Push Example
MESSAGE=HELLO WORLD
/node_modules/
if (require.main === module) {
main()
}
function main () {
console.log(process.env.MESSAGE)
}
{
"name": "column-gist-push",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "column-gist-push",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.0"
}
},
"node_modules/dotenv": {
"version": "16.0.0",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.0.tgz",
"integrity": "sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==",
"engines": {
"node": ">=12"
}
}
},
"dependencies": {
"dotenv": {
"version": "16.0.0",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.0.tgz",
"integrity": "sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q=="
}
}
}
{
"name": "column-gist-push",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node -r dotenv/config main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment