타입스크립트 기반의 nodejs 백엔드 초기 세팅
DBeaver 다운로드 - 플러그모양눌러서 postgreSQL 연결하기
typeORM 설치
yarn add typeorm
package.json은 자동으로 설치 되지만, 안된다면 만들어줄것
타입스크립트 설치
yarn add typescript —dev
tsconfig.json 파일을 만들기
[https://www.typescriptlang.org/]
이 사이트에서 what is config.json
{
"compilerOptions": {
"target": "ES2015",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true
},
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Recommended"
}
vscode에 백엔드 폴더 만들기
js 파일 하나 만들고, consele.log(Hello World!!)
콘솔에 node aaa.js
ts-node 설치 하기
yarn add ts-node --dev
yarn add ts-node-dev --dev