Jbee

Results 107 issues of Jbee

# TypeScript with babel :tada: babel 7이 release 되면서 preset 중 하나로 typescript preset이 추가되었습니다. > Reference: https://github.com/Microsoft/TypeScript-Babel-Starter 기존에 babel을 사용하여 ES.next 문법을 사용하시던 분들에게 TypeScript에 대한 진입 장벽이 조금이라도...

type: document
related: typescript
related: tool
for: share

## Description ### `index.html` ```html ``` ### Nginx ``` # For Product Root Point location / { # kill cache add_header Last-Modified $date_gmt; add_header Cache-Control 'private no-store, no-cache, must-revalidate, proxy-revalidate,...

type: document
related: Infra

## Description 간혹 Android IAB에서 '재생(play)'이 제대로 동작하지 않는 경우가 발생. 모든 버전에서 발생하고 있지 않다. 1. 음소거 속성(muted)을 줘야만 재생이 가능하다. 2. 음소거를 풀고는 다시 재생할 수 없다. https://developers.google.com/web/fundamentals/media/video?hl=ko

etc

# Nginx ## Security issues ### Hide nginx version in response header ``` http { # other config server_tokens off; } ``` ### L7 health check `200 OK` is important!...

related: web
related: Infra

## 복원을 한다. - 사용자가 **보고 있던 화면**을 유지해보자. - 애플리케이션 내에서 스크롤 유지 - 외부 링크에서 복귀 시 스크롤 유지 앱 내 이동 시 스크롤 복원은 사용하고 있는 router...

type: material
related: web

# [책] 실용주의적 프로그래머 1. 자신의 기술에 관심과 애정을 가져라 2. 자신의 일에 대해 생각하면서 일하라 모든 개발 과정에서 매일 자신이 내리는 모든 결정을 지속적이고 비판적으로 평가해 보는 것 3....

type: document
type: material

## Description `vue-cli-service build` 커맨드로 build를 수행할 경우, `NODE_ENV`를 컨트롤 하면 안 된다. vue-cli-service 내부적으로 `NODE_ENV`를 판단하여 build mode를 지정하고 있다. ```sh $ NODE_ENV=beta vue-cli-service --mode development # development build...

type: material
related: vue

## Description `/foo/bar`와 같이 second level path로 directly 접근을 시도할 때, 다음과 같은 에러가 발생했다. ``` Uncaught SyntaxError: Unexpected token < ``` vue-router 이슈인줄 알았는데, 디버깅 결과 정말 아무 이상이...

type: material
related: vue

## Description > ref: https://jakearchibald.com/2016/performance-benefits-of-rel-noopener/ `rel="noopener"` 속성을 통해서 performance와 security 부분에서 benefit을 얻을 수 있다. ```html Example site ``` `a` 태그가 아닌 다른 태그를 통해 **새로운 탭 열기**를 할 경우...

type: material
related: web

```html ``` ```scss ul { white-space: nowrap; overflow-x: scroll; -ms-overflow-style: none; // IE 10+ overflow: -moz-scrollbars-none; // Firefox li { margin-right: 8px; display: inline-block; white-space: normal; a { display: block;...

type: document
related: web
related:css