Create react app by live-server || live Server || React App
First install node and check node -v and npm -v Create a directory mkdir <your_directory_name> Run command npm init (press enter and use all defaults) by this command package.json file will be created in root directory for creating Dependency we run this command npm install --save-dev babel-cli babel-preset-react npm install --save-dev babel-cli babel-preset-env sudo npm install -g babel-cli babel-preset-env babel-preset-react ( Installed "babel-cli@6.26.0" with binaries: - babel-doctor - babel - babel-node - babel-external-helpers ) this packages are created. Install live server npm install -g live - server Now again make a directory inside root directory mkdir public (you can take name as you want) mkdir src (you can take name what ever you want you want) inside public folder create two new file index.html index.js inside src folder create one new file main.js ( this is file where react app execution is start. you can take