Jbee

Results 107 issues of Jbee

## 현상 ![Screen Shot 2020-04-02 at 9 44 24 AM](https://user-images.githubusercontent.com/17924127/78199420-99266b80-74c6-11ea-94cf-ba142c6fae5a.png) 플랫폼간 자바스크립트의 `new Date()`를 처리하는 방식이 다르다. ## 해결 ### 1. Timezome을 함께 붙인다. ```js const dateText = '2020-07-01' new...

type: material
related: web

### Sentry ErrorBoundary 사용 이 Sentry에서도 자체 ErrorBoundary를 제공한다. 전역 ErrorBoundary에서 capture된 에러는 unexpected error 이므로 모니터링을 해야 하는데 이 때 SentryErrorBoundary를 이용할 수 있다. ```tsx import { ErrorBoundary }...

for: share
related: react

## Description `p` 태그에서 말줄임을 적용할 때 다음과 같은 속성을 지정할 수 있다. ```css p { line-height: 1.7rem; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; } ``` 이 경우,...

type: material
related: web
related:css

### 1. Table border-collapse issue ```ts /* when border-collapse is 'collapse', cannot apply border style to th, tr element so... */ export const tableBorderWhenIE = isIE() ? css` border-collapse: separate;...

type: material
related: web
related:css

# AWS Lambda @Edge CASE Study ### "ERR_CERT_COMMON_NAME_INVALID" ![스크린샷 2021-01-14 오전 10 27 33](https://user-images.githubusercontent.com/17924127/104532274-336d2f80-5653-11eb-8b88-6c6e85bf5346.png) - https://aws.amazon.com/ko/premiumsupport/knowledge-center/s3-http-307-response/

type: material
related: Infra

`@builtin` extension은 함부로 unabled 시키지 말것 ![image](https://user-images.githubusercontent.com/17924127/104532129-e426ff00-5652-11eb-9dcf-0e0d986d59ff.png) https://github.com/microsoft/vscode/issues/110602

type: material
related: tool

# :tada: Charles for debugging - Charles 라는 Proxy debugging tool 사용법에 대해 정리한다. - 4.0.x version에는 `Map local`한 파일이 전부 load되지 않는 버그가 존재한다. - 이 tutorial에서 사용한 version은...

type: document
etc
related: tool

https://github.com/chimurai/http-proxy-middleware ### Situation 1: 인증 서버에서 cookie domain을 강제했을 경우, withCredential 옵션과는 상관없이 cookie에 접근할 수 없다. (cookie domain이 localhost가 아니라) `cookieDomainRewrite`로 `{강제된 domain address}` 를 localhost로 rewrite 해주자. ```ts...

type: material
related: web

label tag로 input tag를 감싸면 `for`를 명시적으로 쓰지 않아도 된다. ```html ``` ### references https://www.w3.org/TR/html52/sec-forms.html

html

## Description - 그냥 lodash ([[email protected]](https://unpkg.com/[email protected]/lodash.js))는 commonjs로 번들링되서 npm에 배포되었기 때문에 tree shaking이 적용되지 않음. - esm 형태로 배포된 [lodash-es](https://unpkg.com/[email protected]/lodash.js)를 사용해야 함. ### 현재 lodash API 중 사용하고 있는 것은......

type: document
type: material
related: tool