초보가 프로그래밍 언어 공부하기

고정 헤더 영역

글 제목

메뉴 레이어

초보가 프로그래밍 언어 공부하기

메뉴 리스트

  • 홈
  • 태그
  • 방명록
  • 분류 전체보기 (9)
    • django-restframework (0)
    • ubuntu (0)
    • 타입스크립트 (2)
    • nodejs (0)
    • 까페24 (3)
    • windows (2)
    • git (1)
    • vscode (1)
    • php (0)
      • 백앤드프로그래밍을위한php&mysql (0)

검색 레이어

초보가 프로그래밍 언어 공부하기

검색 영역

컨텐츠 검색

분류 전체보기

  • 2 타입스크립트 타입 정리

    2023.07.11 by codege

  • 1. 타입스크립트 vscode로 시작 + eslint + prettier 초기 설정

    2023.07.11 by codege

  • nodejs + React

    2023.07.09 by codege

  • ssh-keygen

    2023.07.09 by codege

  • nodejs 호스팅 windows

    2023.07.09 by codege

  • windows git 설치

    2023.07.09 by codege

  • windows visual studio code 설치

    2023.07.09 by codege

  • windows 10 숨긴 파일

    2023.07.09 by codege

2 타입스크립트 타입 정리

1. any ● 타입스크립트에서 타입을 알 수 없는 상황에서는 기본 타입인 any 가 쓰인다. ● any를 사용하는 것은 자바스크립트를 사용하는 것과 다름이 없다. 프로그램에 있어서 정확도가 떨어지고 타입스크립트를 사용하는 의미가 없어진다. 가급적 사용하지 말자. 2. unknown ● any와 같이 유형을 모를 때, 사용한다. ● 타입스크립트에서 typeof 나 instanceof에 의해 타입이 결정되기 전까지 사용할 수 없게 한다. let a: unknown =10 let b = a 연결,푸시,슬라이스 등을 지원한다. let a:number[] = [1,2,3,4] let b:string[]=["1","2"] let c:(string|number)[] = [1,'a'] const d:(string|n..

타입스크립트 2023. 7. 11. 16:52

1. 타입스크립트 vscode로 시작 + eslint + prettier 초기 설정

1. 원하는 폴더를 만들고 그 안으로 들어간다. mkdir type-1 cd type-1 2. npm 프로젝트를 초기화 한다. npm init 3. typescript, nodejs 용 타입 선언을 설치한다. npm install --save-dev typescript @types/node ☞ 참고 npm install --save 프로젝트의 dependencies 목록에 추가한다. 프로젝트 실행에 필요한 프로그램이 된다. npm install --save-dev npm install -D 프로젝트의 devDependencied 목록에 추가한다. 개발시에 필요한 프로그램이라는 뜻이다. npm install -g 패키지를 프로젝트가 아닌 시스템의 node_module에 추가한다는 뜻이다. 4. tsconf..

타입스크립트 2023. 7. 11. 01:49

nodejs + React

1. vscode에서 git bash 상에서 작업을 하도록 하겠다. git 다운로드 및 설치는 https://planguage.tistory.com/7 를 참고하도록 하라. 2. nodejs 설치 https://nodejs.org/ko Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org 안정화 버전을 다운로드하세요. $ npm -v 로 설치 확인을 하도록 한다. $ npm install -g yarn $ yarn global add create-react-app 이제 만들고 싶은 폴더로 이동을 한다. $ mkdir server $ cd server $ yarn create react-app m..

까페24 2023. 7. 9. 22:50

ssh-keygen

1. $ ssh-keygen -t rsa -C 원하는이름 Enter file in which to save the key (/c/Users/klaus/.ssh/id_rsa):

까페24 2023. 7. 9. 20:27

nodejs 호스팅 windows

1. https://hosting.cafe24.com/ 카페24 무료 쇼핑몰, 유튜브 쇼핑, 마켓/SNS 판매, 엔터프라이즈 서비스, 해외 쇼핑몰, 광고마케팅, 호스팅 등 제공 www.cafe24.com 이곳에서 원하는 모델 선택하고 결제 후 사용가능합니다. 2. git 설치 https://planguage.tistory.com/7 windows git 설치 1. https://git-scm.com/ Git git-scm.com 위의 창으로 들어가 본인한테 맞는 버전을 클릭해서 다운로드 하세요. Click here to download planguage.tistory.com 3. https://nodejs.org/ko Node.js Node.js® is a JavaScript runtime built o..

까페24 2023. 7. 9. 19:06

windows git 설치

1. https://git-scm.com/ Git git-scm.com 위의 창으로 들어가 본인한테 맞는 버전을 클릭해서 다운로드 하세요. Click here to download

git 2023. 7. 9. 18:50

windows visual studio code 설치

1. 구글 검색창에 vscode 클릭 검색 https://code.visualstudio.com/#alt-downloads 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 순서대로 클릭해서 들어간다. User Installer System Instal..

windows 2023. 7. 9. 18:45

windows 10 숨긴 파일

1. 화면 왼쪽 밑 찾기 창에서 내 Pc를 검색하세요 2. 창 화면에서 보기 를 누르고 숨긴 항목 에 클릭을 체크하면 숨겨진 폴더가 모두 보이게 됩니다. 모두 즐거운 코딩 되세요

windows 2023. 7. 9. 18:18

추가 정보

인기글

최신글

페이징

이전
1 2
다음
TISTORY
초보가 프로그래밍 언어 공부하기 © Magazine Lab
페이스북 트위터 인스타그램 유투브 메일

티스토리툴바