[Mac, Brew] Upgrade & Downgrade Node Versions
·
Development Study/Background Knowledges
In here, we use Homebrew to upgrade & downgrade you node version 1. Check your node version and search your node lists brew search node node -v 2. Unlink your current node version brew unlink node + If(I don't have that version I want to use!) { brew install node@14 } You can use that command to install the version 3. Install new node version that you want brew link --overwrite --force node@19 +..
[2022WinterBootcamp] 2주차 회고
·
활동내역.zip/Bootcamp
2023 Serieses [ 2023 ] CheckPoint, 2023년 2023년동안 작성했던 회고록들을 모아 둔 게시글이다 2023년 동안 작성한 회고들을 계속해서 업데이트 해 나갈 예정이다 [ January ] - 변화의 시작, 1월 [2022WinterBootcamp] 0~1주차 회고 개발자가 되기로 time-map-installer.tistory.com 본문 아이디어 회의가 모두 끝이 났다 괜찮은 아이디어를 찾기 위해 3번에 걸쳐 아이디어를 내고 디자인하고 새로시작하고를 반복하였고, 드디어 괜찮은 아이디어를 결정할 수 있었다 아이디어 회의를 3회동안 진행하면서 어떤 점을 배웠을까? 아이디어를 내고 디자인과 아키텍처, ERD를 만들고 지우는 과정을 반복하였다 전체적인 과정에 대한 속도가 점점 빨라..
[TypeScript] TypeScript Grammar - 09
·
Development Study/Frontend
Previous Series
[TypeScript] TypeScript Grammar - 08
·
Development Study/Frontend
Previous Series [TypeScript] TypeScript Grammar - 06~07 Previous Series [TypeScript] TypeScript Grammar - 03~05 3. Type alias This Posting contains how to alias type to other variables type myType = number | string; let grade: myType = 3 Use type to create type and use to annotate another. Usually, we use it wh time-map-installer.tistory.com 8. Class class Train { color : string; constructor(col..
[TypeScript] TypeScript Grammar - 06~07
·
Development Study/Frontend
Previous Series [TypeScript] TypeScript Grammar - 03~05 3. Type alias This Posting contains how to alias type to other variables type myType = number | string; let grade: myType = 3 Use type to create type and use to annotate another. Usually, we use it when we have to define two or more variables 3_01. Type al time-map-installer.tistory.com 6. Functions This Posting contains how to make functin..
[TypeScript] TypeScript Grammar - 03~05
·
Development Study/Frontend
Previous Series [TypeScript] TypeScript Grammar - 02 Previous Series [TypeScript] TypeScript Grammar - 01 1. Type Annotation TypeScript uses colon ( : ) behind variables to annotate a type const myMaxHamburger: number = 3; const answer: string = "Yes I can"; const drinks: boolean = true; You can code like va time-map-installer.tistory.com 3. Type alias This Posting contains how to alias type to ..