Using Node's built-in support for environment variable files (.env files).
Last active
October 24, 2024 17:50
-
-
Save travishorn/9a3634bc185ae12f179689df0fdb9876 to your computer and use it in GitHub Desktop.
Using Node's built-in support for environment variable files (.env files).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NAME=World |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log(`Hello, ${process.env.NAME}`); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "node-env-file", | |
"version": "0.1.0", | |
"scripts": { | |
"start": "node --env-file .env index.js" | |
} | |
"type": "module" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment