いくつになってもエラーや警告メッセージを無意識に読み飛ばしてしまう癖とはなくならないものです。
ということで、久しぶりに npm を使ってツールを入れようとしたら以下のようなメッセージが出ました。
npm WARN npm npm does not support Node.js v9.3.0 npm WARN npm You should probably upgrade to a newer version of node as we npm WARN npm can't make any promises that npm will work with this version. npm WARN npm Supported releases of Node.js are the latest release of 4, 6, 7, 8. npm WARN npm You can find the latest version at https://nodejs.org/
無意識に読み飛ばして、インストールしたつもりになったツールのコマンドを叩いたところで入ってなくて「あれ?」ってなりました。
なおしかた
以下のコマンドを実行して一回 npm をアンインストールします。
npm uninstall -g npm
そして、Node.js のサイトからインストーラーを落としてきて再インストール。 これでなおりました。
参考
Stackoverflow は素晴らしい。