Skip to main content

React Issue on my app


1. Install ReactCLI 

command: 

    npm install react-cli react


2.  Change set to export in scripts 

  ex. 

    set NODE_OPTIONS=--openssl-legacy-provider && react-scripts start

export NODE_OPTIONS=--openssl-legacy-provider && react-scripts start

Comments

Popular posts from this blog

Audio Player creation for HTML websites

You can use the link below to create audio elements by using html tags. https://www.w3schools.com/tags/tag_audio.asp By using the audio tags you can get familiar with elements, as you become familiar with the elements and components of the audio component, you can customize the audio element visuals by styling it through CSS.   Below is a link to try out the audio element https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_audio There are other options too. As you become familiar with external links and using code from those external links such as external css, js, then you will be able to have a better understanding of how to use JS libraries.   Using audio js libraries is simple You can just copy and paste the cdn link to your html file. Look at the document for the specific library you are going to be using so you can get an idea of how to implement and make use of the code for which is needed. In doing so, you can then implement the code for it to visually show when...