npm i typeorm mysql2
를 설치한다.
back 디렉토리에서 ormconfig.json 파일을 만들고 아래와 같이 입력한다.
{
"type": "mysql",
"host": "127.0.0.1",
"port": 3306,
"username": "root",
"password": "root",
"database": "nyamo-db",
"synchronize": true,
"logging": false,
"entities": [
"src/entity/**/*.ts"
],
"migrations": [
"src/migration/**/*.ts"
],
"subscribers": [
"src/subscriber/**/*.ts"
],
"cli": {
"entitiesDir": "src/entity",
"migrationsDir": "src/migration",
"subscribersDir": "src/subscriber"
}
}
index.ts를 아래와 같이 수정한다.
import express from 'express';
import { createConnection } from 'typeorm';
import "reflect-metadata";
const app = express();
createConnection()
.then(() => {
console.log('db 연결 성공!!');
})
.catch((error) => console.log(error));
app.get('/', (req: express.Request, res: express.Response) => {
res.send('Hello World!');
});
app.listen(4000, () => {
console.log('Example app listening on port 4000!');
});
MySQLWorkbench 에서 localhost root 디비에 nyamo-db 스키마를 만들고 npm run dev
를 하면 콘솔창에 db 연결 성공!! 가 뜨는 것을 확인 할 수 있다.