В последнее время я получаю следующие предупреждения, когда запускаю какой-либо скрипт npm:
npm WARN npm npm does not support Node.js v12.4.0
npm WARN npm You should probably upgrade to a newer version of node as we
npm WARN npm can't make any promises that npm will work with this version.
npm WARN npm Supported releases of Node.js are the latest release of 6, 8, 9, 10, 11.
npm WARN npm You can find the latest version at https://nodejs.org/
В нем говорится, что я должен перейти на более новую версию, но v12.4 - это новейшая версия.Несмотря на то, что скрипты работают нормально, я думаю, что нет никакой гарантии, и что-то может сломаться в любой момент.
Я также пытался обновить npm
в случае, если есть более новая версия, использующая npm install npm -g
, но получил ошибку:
npm ERR! path /usr/local/Cellar/node/12.4.0/lib/node_modules/npm
npm ERR! code EACCES
npm ERR! errno -13
npm ERR! syscall access
npm ERR! Error: EACCES: permission denied, access '/usr/local/Cellar/node/12.4.0/lib/node_modules/npm'
npm ERR! [Error: EACCES: permission denied, access '/usr/local/Cellar/node/12.4.0/lib/node_modules/npm'] {
npm ERR! stack: 'Error: EACCES: permission denied, access ' +
npm ERR! "'/usr/local/Cellar/node/12.4.0/lib/node_modules/npm'",
npm ERR! errno: -13,
npm ERR! code: 'EACCES',
npm ERR! syscall: 'access',
npm ERR! path: '/usr/local/Cellar/node/12.4.0/lib/node_modules/npm'
npm ERR! }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator (though this is not recommended).
Тогда я увидел, что Homebrew-версия npm
не может быть обновлена с помощью самого npm, поэтому я попытался обновить с помощью Homebrew
с помощью brew upgrade npm
, но получил эту ошибку:
Error: npm 12.4.0 already installed
По какой-то причине Brew смешивает версии node
s и npm
s.
Что я делаю неправильно и как я могу избавиться от этого предупреждения?