当试图安装nodemon软件包时,得到404错误[关闭]。

问题描述 投票:-1回答:1

当我试图安装nodemon软件包时,我得到一个404错误。

PS C:\Users\Fo0ola\Desktop\SERVER-SIDE> npm install -g nomdemon
npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/nomdemon -
Not found
npm ERR! 404
npm ERR! 404  'nomdemon@latest' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
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\Fo0ola\AppData\Roaming\npm-cache\_logs\2020-05-05T19_11_02_879Z-debug.log
node.js installation nodemon
1个回答
0
投票

你有一个错别字,你写了 nomdemon 而不是 nodemon

尝试运行

npm install -g nodemon
© www.soinside.com 2019 - 2024. All rights reserved.