skip to Main Content

When I try to install npm I get this error version 8.19.3

npm ERR! 404 Not Found – GET https://skimdb.npmjs.com/registry/laravel-echo-server/-/laravel-echo-server-1.6.3.tgz – not_found
npm ERR! 404
npm ERR! 404 ‘laravel-echo-server@https://skimdb.npmjs.com/registry/laravel-echo-server/-/laravel-echo-server-1.6.3.tgz’ is not in this registry.

2

Answers


  1. That URL seems to return a 404 in general.

    curl -Is  https://skimdb.npmjs.com/registry/laravel-echo-server/-/laravel-echo-server-1.6.3.tgz| grep HTTP | cut -d ' ' -f2
    

    Possible Solutions:

    • Remove & re-add it to your repo with npm i laravel-echo-server. If you still encounter issues,
    • Add the package directly from the github URL. It is possible to have NPM directly include Public Git (Github, Bitbucket) repositories: using the same command above npm i https://github.com/tlaverdure/Laravel-Echo-Server Further Reading
    Login or Signup to reply.
  2. Run these commands

    npm un laravel-echo-server
    
    npm i laravel-echo-server
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search