Configure HTTPS for React applications running locally

Configure HTTPS for React applications running locally

If you build an application with create-react-app and run it locally, the application will be served using the HTTP protocol by default. Applications running in a production environment are served using HTTPS.

Although configuring HTTPS is pretty straightforward, configuring it locally is a bit more complicated.

[[346336]]

As we all know, the create-react-app program is run with npm run start (or simply npm start). In the scripts section of the package.json file, there is a line of configuration:

  1. "start": "react-scripts start"

Change it to:

  1. "start": " HTTPS = true react-scripts start"

Set the value of the environment variable HTTPS to true.

This is not enough, you also need to generate a local certificate.

Note: The following commands are executed on macOS, and can be operated in the same way on Linux. However, there is no guarantee that they will work successfully on Windows.

In the project root directory, run:

  1. openssl req -x509 -newkey rsa:2048 -keyout keytmp.pem -out cert.pem -days 365

Then run:

  1. openssl rsa -in keytmp.pem -out key.pem

Two files, cert.pem and key.pem, will be generated in the current directory.

Now change the start script in the package.json file to:

  1. "start": "export HTTPS = true && SSL_CRT_FILE = cert .pem&& SSL_KEY_FILE = key .pem react-scripts start",

Now run npm run start and access the React application. You should see the following warning message:

This is because the default browser does not trust the local certificate.

Click on the little "Not Secure" icon near the address bar and a small panel will appear:

Click on Certificate and you will see another panel with the certificate details:

Now drag the certificate icon to the desktop or a folder with the mouse, and you will get the certificate file. Then double-click the certificate to install it and set it as "Trusted Certificate or Issuing Authority".

After the setup is complete, you can access your React application locally via HTTPS:

<<:  Huawei's Ryan Ding: Working together to create the most successful 5G

>>:  WeChat PC version 3.0 official version detailed experience: friends' permissions are more convenient to view

Recommend

How will the emergence of 5G affect AI federated learning?

As development teams scramble to build AI tools, ...

Accident review: We duplicated the order ID!

[[428490]] introduce In many business systems, we...

...

4G changes life, 5G changes society, so what will 6G change?

The answer is: 6G will change the telecommunicati...

5G is here, and so is mainstream adoption for industrial IoT startups

Making machines communicate with humans is the be...

5G is coming: analyzing the fronthaul solution of high-density wireless systems

The LTE era of wireless communications has been f...

Five myths about instant messaging that every entrepreneur needs to know

Nowadays, enterprise-level instant messaging tool...

How should we view 6G?

[[274234]] Recently, Canadian media reported that...

Facebook: An innovative data center network topology

[[126753]] Aerial view of Facebook's data cen...

What is the situation of my country’s Internet network security in 2017?

Recently, Yun Xiaochun, deputy director and chief...