I have setup a MySQL database. When I try to access it through my Node JS server, I am getting the error
\"ER_NOT_SUPPORTED_AUTH_MODE: Client does no
just create a new user on MySQL
CREATE USER 'foo'@'localhost' IDENTIFIED WITH mysql_native_password BY 'bar';