Пакеты npm не устанавливаются, получая эту ошибку - PullRequest
1 голос
/ 08 июля 2019

Это ошибка самого npm.Пожалуйста, сообщите об этой ошибке по адресу: https://npm.community

npm ERR!код EINVALIDTYPE npm ERR!Ошибка типа: Аргумент № 5: ожидаемый объект, но получена строка npm ERR!Ошибка типа в inflatableChild (C: \ Program Files \ nodejs \ node_modules \ npm \ lib \ install \ inflate-shrinkwrap.js: 93: 3) npm ERR!ошибка в C: \ Program Files \ nodejs \ node_modules \ npm \ lib \ install \ inflate-shrinkwrap.js: 55: 12 npm ERR!ошибка типа в tryCatcher (C: \ Program Files \ nodejs \ node_modules \ npm \ node_modules \ bluebird \ js \ release \ util.js: 16: 23) npm ERR!Ошибка типа в Object.gotValue (C: \ Program Files \ nodejs \ node_modules \ npm \ node_modules \ bluebird \ js \ release \ redu.js: 155: 18) npm ОШИБКА!ошибка типа в Object.gotAccum (C: \ Program Files \ nodejs \ node_modules \ npm \ node_modules \ bluebird \ js \ release \ redu.js: 144: 25) npm ОШИБКА!Ошибка типа в Object.tryCatcher (C: \ Program Files \ nodejs \ node_modules \ npm \ node_modules \ bluebird \ js \ release \ util.js: 16: 23) npm ОШИБКА!ошибка в Promise._settlePromiseFromHandler (C: \ Program Files \ nodejs \ node_modules \ npm \ node_modules \ bluebird \ js \ release \ обещание: js: 512: 31) npm ERR!ошибка в Promise._settlePromise (C: \ Program Files \ nodejs \ node_modules \ npm \ node_modules \ bluebird \ js \ release \ обещание.js: 569: 18) npm ОШИБКА!ошибка в Promise._settlePromise0 (C: \ Program Files \ nodejs \ node_modules \ npm \ node_modules \ bluebird \ js \ release \ обещание.js: 614: 10) npm ОШИБКА!ошибка в Promise._settlePromises (C: \ Program Files \ nodejs \ node_modules \ npm \ node_modules \ bluebird \ js \ release \ обещание.js: 694: 18) npm ОШИБКА!ошибка типа _drainQueueStep (C: \ Program Files \ nodejs \ node_modules \ npm \ node_modules \ bluebird \ js \ release \ async.js: 138: 12) npm ERR!ошибка типа _drainQueue (C: \ Program Files \ nodejs \ node_modules \ npm \ node_modules \ bluebird \ js \ release \ async.js: 131: 9) npm ERR!Ошибка типа async._drainQueues (C: \ Program Files \ nodejs \ node_modules \ npm \ node_modules \ bluebird \ js \ release \ async.js: 147: 5) npm ERR!Ошибка типа в Immediate.Async.drainQueues [как _onImmediate] (C: \ Program Files \ nodejs \ node_modules \ npm \ node_modules \ bluebird \ js \ release \ async.js: 17: 14) npm ERR!Ошибка типа в processImmediate (internal / timers.js: 439: 21) npm ERR!typeerror Это ошибка самого npm.Пожалуйста, сообщите об этой ошибке по адресу: npm ERR!Ошибка типа https://npm.community

узел 12.6.0 npm 6.9.0

Ответы [ 2 ]

3 голосов
/ 08 июля 2019

Попробуйте использовать версию LTS, а не текущую версию.Прямо сейчас LTS узла - 10.16.0, а текущая версия - 12.6.0.

LTS имеют тенденцию быть более стабильными и иметь меньше ошибок, потому что стабильная версия

Затем, когда вы закончите установку, попробуйте запустить

npm cache clean --force

Затем удалите package-lock.json

Удалить node_modules папку

Затем запустить npm i

0 голосов
/ 08 июля 2019

Попробуйте это:

1 - удалить папку node_modules 2- npm кеша чистый --force 3- npm установка

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...