티스토리 뷰
용도
데이터베이스를 통해 Typescript interface를 생성하기 위해 사용한다.
패키지 명은 @rmp135/sql-ts 이다.
NPM 주소 : https://www.npmjs.com/package/@rmp135/sql-ts
나는 node js 프로젝트에 있는 sequelize model에 타입을 적용하기 위해서 interface가 필요하여
적용하였다.
실습
cli를 통해서 실행할 수 도 있지만, 관리 용이성을 위해 js를 통해서 작업을 진행 하였다.
https://rmp135.github.io/sql-ts/#/?id=node-module
사전 설치
mariadb인 경우에 mysql2 패키지를 설치해준다.
npm install mysql2
참조: https://knexjs.org/guide/#node-js
generate-types.js
/* eslint-disable import/no-extraneous-dependencies, no-template-curly-in-string */
import { Client } from '@rmp135/sql-ts';
import path, { dirname } from 'path';
import fs from 'fs';
import { fileURLToPath } from 'url';
const config = {
client: 'mysql2',
connection: {
host: '10.3.192.2',
port: 3306,
user: 'root',
password: 'root1!',
database: 'MyDB',
},
// output filename: models.d.ts
filename: 'models.d',
// table 명으로 파일 생성
interfaceNameFormat: '${table}',
// database 필드를 명시해도 다른 database 테이블이 불러와지는 문제로
// schemas 필드를 추가
schemas: ['SCS'],
};
Client.fromConfig(config)
.fetchDatabase()
.toTypescript()
.then((res) => {
// 현재 경로
const __dirname = dirname(fileURLToPath(import.meta.url));
// export 제거 -> jsdoc에서 import 없이 참조하기 위함
const result = res.replace(/export /g, '');
fs.writeFileSync(path.join(__dirname, '/@types/models/models.d.ts'), result, 'utf-8');
});
위 코드처럼 생성은 간단하다. 😀 몇가지 상세 설정은 공식 문서를 참조해서 작성하였다.
나는 JSDoc에 사용하기 위해서 export 구문을 제거하는 작업을 하여 파일을 생성했다. 🖖
'개발' 카테고리의 다른 글
[REST API]Put VS Patch 예제로 이해해보자 (0) | 2024.05.24 |
---|---|
Javascript 동작 방식 (0) | 2022.12.04 |
[Js] Object Property에 대해 알아보자 (0) | 2022.11.06 |
[JS] Null인 경우 값 설정 연산, Nullish coalescing operator (??) (0) | 2022.10.30 |
[JS] function keyword 없는 함수 (0) | 2022.09.01 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- express crud
- 외래키 인덱스 생성 구문 쿼리
- unplugin-auto-import
- vue 컴포넌트 자동 import
- postgresql on update current_timestamp
- 오블완
- rest api 단건 다건
- 1종 적성검사 과태료
- 외래키 생성
- component auto import
- rest api 조회 생성 수정 삭제
- 티스토리챌린지
- mariadb 외래키 조회
- 강서 운전면허 시험장
- 1종 적성검사
- epel/x86_64
- rest api crud
- postgresql 수정시간 자동 갱신
- vue 전역 컴포넌트 설정
- postgresql 외래키
- 외래키 삭제
- epel repo
- postgresql 트리거
- Oracle Database 19c install
- 1종 적성검사 국가건강검진
- 1종 적성검사 신체검사
- Oracle Database 19C 설치
- 스파르타 코딩클럽
- postgresql trigger
- oracle 19c 설치
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함