我如何从 React JS 访问当前 NodeJS 中的环境变量

How can i access evironment variables in present NodeJS from ReactJS

我想在 reactjs 的 nodejs 根文件夹中使用我的 .env 变量 presend。我尝试使用 process.env.TEST 但我总是不确定。有什么解决办法吗?

我的文件夹结构。

Project root
 |-client
 |  |- //react project files
 |  |-app.js
 |
 |- //nodejs project files
 |-.env
 |-server.js

我想访问 app.js 及其组件中的 .env 变量

您可以使用 find-up 在整个 monorepo 中获取变量。

在此处查找a bright article 用法。