Skip to content

Instantly share code, notes, and snippets.

@travishorn
Last active October 24, 2024 17:50
Show Gist options
  • Save travishorn/9a3634bc185ae12f179689df0fdb9876 to your computer and use it in GitHub Desktop.
Save travishorn/9a3634bc185ae12f179689df0fdb9876 to your computer and use it in GitHub Desktop.
Using Node's built-in support for environment variable files (.env files).

Node Env File

Using Node's built-in support for environment variable files (.env files).

NAME=World
console.log(`Hello, ${process.env.NAME}`);
{
"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