Home > Mobile >  mongooes try to npm install mongooes
mongooes try to npm install mongooes

Time:09-22

PS E:\Node Js> npm install mongooes npm ERR! code E404 npm ERR! 404 Not Found - GET https://registry.npmjs.org/mongooes - Not found npm ERR! 404 npm ERR! 404 'mongooes@*' is not in this registry. npm ERR! 404 npm ERR! 404 Note that you can also install from a npm ERR! 404 tarball, folder, http url, or git url.

npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\NITISH\AppData\Local\npm-cache_logs\2022-09-20T06_30_10_137Z-debug-0.log

CodePudding user response:

There's a mistake in the spelling of the package It's mongoose not mongooes

Run npm i mongoose instead

  • Related