Tuesday, August 18, 2020

How to fix npm create-react-app stuck at 'found 0 vulnerabilities'

 How to fix npm create-react-app stuck at 'found 0 vulnerabilities'

                                              core.js Postinstall error

I started learning React recently from youtube, channel name: Thapa Technical. So as I was instructed to install Node.js, I downloaded and installed it (64-bit). I ran npx create-react-app app which is responsible for creating a react app with boilerplate required.

PROBLEM FACE : 

Some file was missing in package.jason. Also public , src and other foldwers and files were not present in the directory. i search so many stuffs in youtube and google. Then after a week , i got a solution and do that. After done that solution, my problem was solved.

The problem is : 

SO, The Solution is that in following steps :

1. Uninstall nodejs.x64 bit and download nodejs.x32 bit and install it.

Now Run the following commands as per your directory :
    2. npm rm -g create-react-app
    3. npm install -g create-react-app
    4. npx create-react-app my-app

Doing that solved my problem.

Happy React , Happy Hacking !!

Thank You.

Thursday, August 13, 2020

How to work on Xampp for the first time using CMD

How to work on Xampp for the first time using CMD


1. Go to c:/xampp/MySQL/bin/MySQL
2. now as per given in the below figure to start the server :



Note:  You should first start the Apache and Mysql server in the Xampp application.

3. create Database :


4. If you want to delete any database as : 


5. After establishing database, we have to use the database as follows : 

6. Now we have to select the database as we want : 


7. we have to create the table format to maintain the databases:


8. How to show our tables in database :


Wednesday, August 12, 2020

How to solve Apache error in Xampp control panel

 How to solve Apache error in Xampp control panel






Here, The problem is that we have not able to start the apache server because of some error. we can read the error is the port i.e. 80 and 443 is not able to run because that port is used by other applications ( Vmware workstation - in my pc ). 

So, we have two option to solve this error :

1. We can uninstall the app which is using the same port.
2. We can change the port in Xampp in option configure->service and port settings.


Hopely, the Problem is solved.

Thank You.

 Write a JAVA program of a player class || JAVA program on cricket Problem Statements: 1. Define a class player having a player name, player...