# sequelize 란? 자바스크립트 문법으로 데이터베이스 조작가능. # 시작 - npm i sequelize sequelize-cli mysql2 설치 - npx sequelize init 치면 폴더 여러개 생길거임. congif : 쓸 데이터베이스 정보. 보통은 password, database를 조작함. models : 여기에 데이터베이스 테이블 js 파일을 집어넣음. 단수형으로. seeder : 모름 migrations : 모름 # 제로초 예제 https://github.com/ZeroCho/nodejs-book/blob/master/ch7/7.6/learn-sequelize/models/index.js GitHub - ZeroCho/nodejs-book Contribute to ZeroCho/..