Node.js deprecated object-keys
Asked Answered
N

1

6

I'm a beginer at node.js, and I'm learning it through a tutorial. I installed node correctly and tested it out with simple console.log calls. The problem is I'm getting an error when trying to run this command:

npm-install node-dev -g

I get an error:

"npm WARN deprecated [email protected]: Please update to the latest object keys"

I'm running node on windows 7 64-bit

Any ideas on what might be wrong?

Notional answered 23/12, 2014 at 10:1 Comment(0)
C
1

The library you install have object-keys library with version 0.2.0 somewhere in dependency tree, and version 0.2.0 is deprecated.

You have nothing to worry about at the moment, especially as you are just starting to work with node.js, it is only deprecated, and library owner will probably update it soon. However you can help him with that by filing a bug report.

Copyreader answered 23/12, 2014 at 10:8 Comment(2)
where do I fill a bug report?Notional
@Notional I suppose here: https://github.com/fgnass/node-dev is the main repository of this library.Copyreader

© 2022 - 2024 — McMap. All rights reserved.