프로젝트의 루트 경로로 이동하여 mysql 모듈을 설치한다.
$npm i mysql --save
Connection pool을 생성한다.
var mysql = require('mysql');
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',
password : '비밀번호',
port : 3306,
database : '사용하는 데이터베이스'
});
'프로그래밍 > Node.js' 카테고리의 다른 글
npm install --save 옵션을 쓰는 이유는? (0) | 2022.02.09 |
---|---|
node.js 프로젝트 시작 (0) | 2021.12.06 |
node.js ./bin/www 에서 app.js로 바꾸는 방법 (0) | 2019.02.11 |
nodemon 설치 후 설정 (0) | 2019.02.10 |
Node.js Express (0) | 2019.02.10 |