본문 바로가기

전체 글171

자주 사용하는 HTTP 상태 코드 보호되어 있는 글 입니다. 2023. 10. 24.
[ React ] 컴포넌트 생명주기 보호되어 있는 글 입니다. 2023. 10. 24.
[ Korean FE Article ] Tailwind CSS에서 혼란을 방지하기 위한 5가지 모범 사례 TailwindCSS 를 사용하기 위해 프로젝트가 충족해야 하는 두 가지 요구 사항 1. 프로젝트에 디자인 시스템이 있어야 한다. 2. 이미 컴포넌트 기반 접근 방식을 사용하고 있어야 한다. 유틸리티 우선(Utility-first)접근 방식은 Tailwind 클래스가 요소에 직접 적용되기 때문에 상당히 복잡하고 장황한 HTML 구조로 이어진다. 마크업을 읽고 유지 보수하기가 더 어렵다. `@apply` 지시문 피하는 것이 좋다. => 컴포넌트 내에서 격리되지 않아서 스타일을 변경할 때 회귀가 없다, CSS 번들 크기 증가한다 모범 사례 가능한 한 적은 수의 유틸리티 클래스 사용 pt-4 pb-4를 설정하는 대신 py-4사용 flex flex-row justify-between 대신 flex justify.. 2023. 10. 24.
[ Node.js ] process 메소드 파헤치기 binding: [Function: binding], _linkedBinding: [Function: _linkedBinding], _eventsCount: 0, _maxListeners: undefined, domain: [Getter], _exiting: [Getter/Setter], config: [Getter/Setter], dlopen: [Function: dlopen], uptime: [Function: uptime], _getActiveRequests: [Function: _getActiveRequests], _getActiveHandles: [Function: _getActiveHandles], getActiveResourcesInfo: [Function: getActiveResources.. 2023. 10. 23.
Error: 를 어떻게 [ERROR] 로? class MyError extends Error { constructor( ...params) { super(...params); this.message = [...params]; this.name = '[ERROR]'; } } 참조 https://helloworldjavascript.net/pages/290-exception.html 2023. 10. 22.
[ English ] 중복 duplicate 가장 일반적이고 직관적인 표현예시 Please remove the duplicate files. redundant 불필요하게 중복되거나 반복되는 것예시 The secong paragraph contains reduundant information. We need to eliminate redundant steps in the review process. repetition '중복'보다는 '반복'에 더 초점이 맞춰진 표현예시 The repetition of certain words makes the essay less engaging. overlapping 서로 겹치거나 중첩되는 것을 나타내는 동사예시 The two circles intersect, creating an overlappi.. 2023. 10. 22.