Connect MySQL to express

0

I'm doing a server with MySQL and express but I can not connect to the server. Try the following:

var mysql = require("mysql");
var connection=mysql.createConnection({
host:"localhost",
user:"pedro",
password:"cocoypaco2",
database:"users",

}); connection.connect (); and the error that the console throws at me when opening the server is: ER_NOT_SUPPORTED_AUTH_MODE:

The version I have of MySQL is 8.0.13 THANK YOU!

    
asked by Pedro Danderfer 08.11.2018 в 21:30
source

0 answers