skip to Main Content

screenshot

i tried cd app/path npm start but didnt work. Maybe if theres any other way to create that javascript react project guide me
i also tried deleting the lock file but it didnt work either
note that im new new to programming therefore your help should be alittle descriptive

2

Answers


  1. Have you installed npm?
    you can install it using this command in the project directory:

    npm install
    

    after that, try starting the npm process as you would normally.

    If there are other problems with npm, you can try with this command:

    npm uninstall <name>
    

    after that, install npm:

    npm install
    
    Login or Signup to reply.
  2. try using the command:

    npm uninstall npm
    

    to uninstall npm, and then install it again with:

    npm i
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search