https://github.com/tj/n/
seriously, it's so much tidier!
Where I work we use the nix package manager. Making sure your team is using the same version of node is just a few lines of config away:
with (import <nixpkgs> {}); mkShell { buildInputs [ nodejs-8_x ]; }
Another upside is that this approach is language agnostic and works for all tools packaged in the nix package repository.
https://github.com/tj/n/
seriously, it's so much tidier!