devamat
devamat

Reputation: 2503

npm install error: what does this mean exactly? How to fix it?

While using npm install I had the following error: what should I do about it and should I worry? How do I contact the author?

17723 error code E404
17724 error 404 Not Found - GET https://registry.npmjs.org/@babel/plugin-transform-named-capturing-types-regex/-/plugin-transform-named-capturing-types-regex-7.4.2.tgz
17725 error 404
17726 error 404 '@babel/[email protected]' is not in the npm registry.
17727 error 404 You should bug the author to publish it (or use the name yourself!)
17728 error 404 It was specified as a dependency of 'front_end'
17729 error 404 Note that you can also install from a
17730 error 404 tarball, folder, http url, or git url.
17731 verbose exit [ 1, true ]

Upvotes: 0

Views: 115

Answers (1)

jsdeveloper
jsdeveloper

Reputation: 4045

404 means not found. I.e. no package was published under that name.

Did you mean this one ?:

npm install --save-dev @babel/plugin-transform-named-capturing-groups-regex

Upvotes: 1

Related Questions