스크랩(12)
-
코드 리뷰의 원칙
https://soojin.ro/review/standard
2024.07.31 -
Shout out from Medium
Star 8.5K, 3.2K 녀석들... 딱 기다려라... 내가 간다.... https://tamfocus.medium.com/my-journey-to-the-best-chrome-extension-boilerplate-8b0ae65b95c1 My journey to the best Chrome Extension boilerplateIntroductiontamfocus.medium.com
2024.05.21 -
React 근황
https://react.dev/blog/2024/02/15/react-labs-what-we-have-been-working-on-february-2024 React Labs: What We've Been Working On – February 2024 – React The library for web and native user interfaces react.dev RSC에서 실험적으로 테스트중인 cache https://react.dev/reference/react/cache cache – React The library for web and native user interfaces react.dev https://youtu.be/LL4V8CcEhIo - 메타 친구들은 자사 서비스에서 테스트 후 s..
2024.02.19 -
graphql-codegen-typescript-mock-data
회사에서 Typescript + GraphQl을 사용하고 있다 보니 테스트에 필요한 mocking data를 만드는 게 어렵지 않다.(타입 추론) 그런데 프로젝트에 테스트가 300개가 넘어가니까 매번 테스트마다 mocking을 해주는게 정말 일이었다;; 이전 회사에서 rest API 작업을 할 때 했던 방법대로 intermock을 통해 mocking을 해보려고 했는데 여의치 않았다. intermock 자체가 지원하는 타입이 제한적이고 미완성이라는 느낌이 많이 나서 사용하지 못하고 있었다 ㅠㅠ [TS] Type과 Interface로 테스트용 Mock Data 만들기 Mock Data의 필요성 프론트엔드 개발을 하는 입장에서는 백엔드 API가 이미 다 준비되어 있고, 인터페이스도 공유가 된 상태에서 작업을 ..
2022.02.18 -
자바스크립트는 왜 프로토타입을 선택했을까
제목과는 달리 왜 선택했는지는 알 수 없었지만, 그 외 모든부분에서 큰 영감을 받은 글. 읽고 또 읽자. 자바스크립트는 왜 프로토타입을 선택했을까 프로토타입으로 검색하면 으레 나오는 서두처럼 저 또한 자바스크립트를 처음 접했을 때 가장 당황스러웠던 게 프로토타입이었습니다. medium.com
2021.12.14 -
모든 자바스크립트 개발자가 사용할 수 있는 10가지 트릭
원문 10 Modern JavaScript Tricks Every Developer Should Use Tips for writing short, concise, and clean JavaScript code betterprogramming.pub 1. 조건부 객체 프로퍼티 추가 const condition = true; const person = { id:1. name: 'seo', ...(condition && {age:16}), } 2. 객체 내 프로퍼티 존재여부 확인 const person = {name:'seo', salary: 1000}; console.log('salary' in person); // true 3. 객체 내 동적 프로퍼티 네임 할당 const dynamic = 'locale'..
2021.06.29