본문 바로가기

개발자정보

Open JDK 다운로드 받는 곳, & Maria DB 원도우 환경 설치 파일

반응형

 http://www.autoset.org

 

오토셋 소개

AutoSet 유지보수 종료 안내 1. 오토셋에 대한 유지보수 계획이 없기에 사용자분들께 이 내용을 알려드립니다. 2. 현재 사이트를 통해 제공되는 버전이 최종 버전이며, 더 이상의 업그레이드가 없

autoset.net

 

https://www.openlogic.com/openjdk-downloads

 

OpenJDK Downloads | Download Java JDK 8 & 11 | OpenLogic

The JDK is the platform for building and deploying Java applications. It is comprised of the JRE (Java Runtime Environment), the JVM (Java Virtual Machine), core class libraries, compilers, debuggers, and documentation.

www.openlogic.com

https://www.jetbrains.com/ko-kr/idea/download/#section=windows

 

IntelliJ IDEA 다운로드: 우수성과 인체 공학이 담긴 JetBrains Java IDE

 

www.jetbrains.com

 

https://nodejs.org/ko/

 

Node.js

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

nodejs.org

https://code.visualstudio.com/

 

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.

code.visualstudio.com

npm install -g yarn

yarn --version

npx create-react-app vsp_front --template typescript
# npx create-react-app vsp_front

npm install --global yarn

cd vsp_front
npm start

VS Code에서 Prettier – Code formatter 

기존 프로젝트에 Typescript 적용
#npm
npm install typescript @types/node @types/react @types/react-dom @types/jest

#yarn
yarn add typescript @types/node @types/react @types/react-dom @types/jest

1. jsconfig.json 파일 -> tsconfig.json 파일명 및 내용 변경

2.. jsx &. js 확장자 파일 ->. tsx 파일로 확장자 변경

tsconfig.json 기본 설정 내용

{
  "compilerOptions": {
    "target": "es5",
    "lib": [
      "dom",
      "dom.iterable",
      "esnext"
    ],
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "noFallthroughCasesInSwitch": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noEmit": true,
    "jsx": "react-jsx"
  },
  "include": [
    "src"
  ]
}
반응형

'개발자정보' 카테고리의 다른 글

JavaScript  (0) 2023.05.05
mariadb 문자열 합치기  (0) 2023.03.18
React 학습자료 #001  (0) 2023.01.13
Salesforce Not Exists  (0) 2022.11.13
요즘 관심있는 오픈소스 관련 사이트 정보  (0) 2022.11.13