Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 11, 2022 02:01 am GMT

How to fix security vulnerabillities in a newly created react app.

If you ever get error messages in the command line interface after creating a new react app with the create-react-app command, just like the image below, then this fix might help you out.

Image description

The first we do is deleting the starter files in the src path except the index.js and app.js files, ending up with the result in the below image.

Image description

The next step involves deleting every starter file in the public path except the index.html file just like below

Image description

In The next step, we will delete some code in the index.js file so that we don't have dependency imports that might trigger errors.

Image description

We will also delete some code in the index.html file to get rid of some of the deleted dependencies.

Image description

After you are finished with finding all the imports that are not used anymore and removing them, there should not be any more errors in the terminal. I hope this helped u out.
Thanks.


Original Link: https://dev.to/heritio/how-i-fixed-security-vulnerabillities-in-a-newly-created-react-app-31ge

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To