Your variable is not existing in the environment, you can try dotenv.config() to make it exist:
import dotenv from 'dotenv'; dotenv.config(); const OPENAI_API_KEY = process.env.OPENAI_API_KEY; console.log(OPENAI_API_KEY);
Ref: https://www.npmjs.com/package/dotenv