I am a newbie starter with not much knowledge,
IDE is React? I googled whatever the IDE I may be using for React but did not found any logic thing, so I don`t know.
Maybe this may help you: I do blindly whatever the link that I wrote, says to me. So no real idea what IDE I am using.
I only know that I write those things in MsDos mode, and repeat them again and again, The tutorial sites that I tried, never say if it has to be done each time or not. Just this is really frustrating.
Sorry of not being able to give details with the correct technical stuff. Because I don`t know.
If you may find any answer to this repetition it will be very helpful. I will appreciate it a lot. Thanks
IDE stands for Integrated Development Environment and it is a application where you can write your code and has extra features like debugging, syntax highlighting, etc.
React is a JavaScript library.
If I had to guess you are probably using a code editor like visual studio code which is a popular choice for frontend developers.
Or maybe you are using another editor, like atom, brackets, sublime, etc.
Let’s break down what these commands are doing
npm init will create a package.json file for your new project.
This holds information about your project like, name, scripts(ex. command for running the project), the dependencies it uses, etc.
The -y flag (or you could use --yes flag) is used to create a starter package.json file with some basic information filled out for you. Without the use of that flag, then you will be walked through a prompt where you will need to fill out that information yourself.