Joe Austin
Joe Austin

Reputation: 557

node module install error (Node.js)

terminal output

I can't install any node.js module without the follwing errors popping up. The error codes refer to the package.json file. Any idea why this would be happening would be hugely appreciated.

Upvotes: 1

Views: 187

Answers (2)

gustavohenke
gustavohenke

Reputation: 41440

Those are not errors, are warnings.

As I already stated in the same question right here, this is just a new check added as of NPM 1.2.20.

There are so much packages in NPM that still lack the repository field in their package.json file.

Upvotes: 0

Andbdrew
Andbdrew

Reputation: 11895

Those are not errors, they are just warnings. Everything is as it should be, though the module owners should probably clean up their package.json files.

Upvotes: 1

Related Questions