백엔드 초기 세팅하기

1118 단어 dbBackendBackend

타입스크립트 기반의 nodejs 백엔드 초기 세팅

  1. DBeaver 다운로드 - 플러그모양눌러서 postgreSQL 연결하기

  2. typeORM 설치

    yarn add typeorm

    package.json은 자동으로 설치 되지만, 안된다면 만들어줄것

  3. 타입스크립트 설치

    yarn add typescript —dev
  4. 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"
    }
  5. vscode에 백엔드 폴더 만들기
    js 파일 하나 만들고, consele.log(Hello World!!)
    콘솔에 node aaa.js

  6. ts-node 설치 하기

    yarn add ts-node --dev
    
    yarn add ts-node-dev --dev

좋은 웹페이지 즐겨찾기