Node
[ Express ] Node.js와 MySQL Database 연동/MySQL Preferred Authentication Plugin 오류 해결
Express에서 MySQL에 접속해 보자.const express = require('express')const app = express()const mysql = require('mysql');const connection = mysql.createConnection({ host: '[ 공인 IP 또는 localhost ]', // 데이터베이스 주소 port: '3306', // 데이터베이스 포트 user: 'root', // 로그인 계정 password: 'password', // 비밀번호 database: 'database' // 액세스할 데이터베이스});connection.connect();connection.query('SELECT 1 + 1 AS ..