Skip to content

How to use environment variables in Netlify functions

New Course Coming Soon:

Get Really Good at Git

A short guide on how to use environment variables in Netlify functions

To use environment variables in your Netlify Functions, access the process.env variable:

process.env.YOUR_VARIABLE

You can use object destructuring at the beginning of your JS file, to make the code nicer:

const { YOUR_VARIABLE } = process.env;

so you can just use YOUR_VARIABLE in the rest of the program.

You set the variables through the Netlify administration interface (you can also add them in your repo, but I’d recommend using the Netlify UI so you have no secrets in your Git repository).

Note: this does not work on Netlify Edge Functions, just on Netlify “regular” Functions that run on AWS Lambda.

For Netlify Edge Functions, you need to use Deno.env.get(), like this:

Deno.env.get('YOUR_VARIABLE')

Example:

export default () => new Response(Deno.env.get('YOUR_VARIABLE'))
Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching Summer 2024. Join the waiting list!

Here is how can I help you: