백엔드 초기 세팅하기
타입스크립트 기반의 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
Author And Source
이 문제에 관하여(백엔드 초기 세팅하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@owlsuri/백엔드-초기-세팅하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)