Hey I have my simple Todo app with the client where I have create-react-app
installed and the server with node
. I want to set env
variables across my app but I am confused how to do it properly.
I have set my .env
file in the root directory of the app.
In the .env
file there is only REACT_APP_HOST=http://localhost:3000
.
I wanted to display it in the client
directory like so:
const { REACT_APP_HOST } = process.env;
console.log({ REACT_APP_HOST });
The code above shows me undefined
. The whole process.env
is an empty object.
I have tried to move the .env
to the client
directory and it works well then but thats not the point I think.
How to do it properly if I would like to use the .env
variables also in the server
side ? Do I need to create two separate .env
files to serve the client and the server in my case or maybe create-react-app
need some extra configuration to be served by one .env
file ?
If it'll help here you have my github repo.
Hey I have my simple Todo app with the client where I have create-react-app
installed and the server with node
. I want to set env
variables across my app but I am confused how to do it properly.
I have set my .env
file in the root directory of the app.
In the .env
file there is only REACT_APP_HOST=http://localhost:3000
.
I wanted to display it in the client
directory like so:
const { REACT_APP_HOST } = process.env;
console.log({ REACT_APP_HOST });
The code above shows me undefined
. The whole process.env
is an empty object.
I have tried to move the .env
to the client
directory and it works well then but thats not the point I think.
How to do it properly if I would like to use the .env
variables also in the server
side ? Do I need to create two separate .env
files to serve the client and the server in my case or maybe create-react-app
need some extra configuration to be served by one .env
file ?
If it'll help here you have my github repo.
Share Improve this question asked Aug 7, 2019 at 20:06 Paweł StaneckiPaweł Stanecki 4542 gold badges11 silver badges27 bronze badges 2- 1 Yes you would need to create an .env for your server, and for the client side which you already have set up. – BARNOWL Commented Aug 7, 2019 at 20:10
- my example mern app github./EliHood/ReactExpressPhotoShareApp, that uses both .env files for server and client folder. Hopefully this helps. – BARNOWL Commented Aug 7, 2019 at 20:11
3 Answers
Reset to default 5Create a
.env
file in the root of your application (same level assrc
):REACT_APP_API = http://XX.XX.XXX.XXX:XXXX
That's it, by naming your variables with REACT_APP
prefix you don't even need to use dotenv.require()
. Now REACT_APP_API
is available at process.env.REACT_APP_API
- You have to create two .env file . One is in client and another is in server(if needed).
- You dont need to set any other configuration for client. By default client directory support .env if it is done with create-react-app. You may get more information at @custom .env
- If you need to use .env for server . create .env at server folder. Add dotenv module. You have to follow instruction from this link. dotenv doc
Right, You must have to create a .env
file in the root of our project. Perhaps it will be the same level as src
.
Please note this link. https://medium./@trekinbami/using-environment-variables-in-react-6b0a99d83cf5
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744132644a4559910.html
评论列表(0条)