When i try:
$ npm install -g cordova@latest
always get
npm WARN deprecated node-uuid@1.4.8: Use uuid module instead
mac Os Sierra 10.12
npm v. 4.4.4
This warning means that old node-uuid module is deprecated and won't be maintained moving forward. The module is still published in NPM for backward compatibility (with the deprecation notice). We can explicitly install uuid module using below commands:
npm uninstall --save node-uuid
npm install --save uuid