参考
エラー
MySQL 8.0 に接続するとエラーが起きる
[nodemon] app crashed - waiting for file changes before starting...
Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client
解決
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'ここにパスワードを入力';
更新するクエリ
flush privileges;
これらのクエリをMySQLで実行すれば解決