프로젝트에서 jQuery 의 사용을 그만두겠다고 결심한 이유, moonformeli, 2019.11.4
- jquery는 느리다.
- 특정 기능에 집중된 다른 라이브러리가 많다.
- jquery는 성능 최적화를 고려한 라이브러리가 아니다.
Modern JavaScript features you may have missed, 2019.10.26
최신 자바스크립트 문법들 몇 가지를 소개하고 있다
-
ES2015
- Binary and octal literals
- Number.isNaN()
-
ES2016
- Exponent (power) operator (제곱)
- Array.prototype.includes()
-
ES2017
-
ES2018
- Regex bonanza
- Lookbehind matches (match on previous chars)
- You can name capture groups
-
ES2019
- Array.prototype.flat() & flatMap()
- Unbound catches (try catch 문에서 에러 인자 안 써도 되게)
- String trim methods
ES2017 - Shared Array Buffers & Atomics 관련 학습을 위한 자료로 여기를 추천합니다.
만화로 보는 DNS over HTTPS, ingeeKim, 2019.10.27
인터넷을 사용하면서 생길 수 있는 프라이버시 관련 문제를 위해 아래와 같은 방법들이 firefox에 적용되어 있다.
- Trusted Recursive Resolver
- DoH (DNS over HTTPS)
- Domain을 찾는 과정에서 가능한 최소한의 정보만 노출하기
Storybook Driven Development - 진겸, 2017.12.2
React Hooks useContext Tutorial (Storing a User), Ben Awad, 2019.6.29
basic tutorial about useContext