Node.js deprecated object keys

I start with node.js and I learn it through a tutorial. I installed node correctly and tested it with simple console.log calls. The problem is that I get an error when trying to execute this command:

npm-install node-dev -g 

I get an error message:

"npm WARN is deprecated object-keys@0.2.0 : update to the latest object keys

I am running node on Windows 7 64-bit

Any ideas on what might be wrong?

+5
source share
1 answer

The library you install has an object-keys library with version 0.2.0 somewhere in the dependency tree, and version 0.2.0 deprecated.

You have nothing to worry about at the moment, especially since you are just starting to work with node.js, this is only out of date, and the owner of the library will most likely update it soon. However, you can help him with this by sending an error message.

0
source

Source: https://habr.com/ru/post/1209761/


All Articles