javascript weekly 2020-03-28


What Happens When the Maintainer of a Major JS Library Goes to Jail?

What Happens When the Maintainer of a Major JS Library Goes to Jail?
corejs 라이브러리의 메인테이너가 오토바이 사고로 사람을 죽이고 감옥에 갔습니다. 주간 다운로드 2600만의 거대 라이브러리 업데이트가 중지되었습니다. 이 사건을 갖고 오픈소스 의존성에 대한 얘기를 합니다.

Measuring the Performance of JavaScript Functions

Measuring the Performance of JavaScript Functions
자바스크립트에서 퍼포먼스를 측정하는 방법을 다룹니다.
간단한 예제도 있고, 플랫폼에 대한 조언도 해줍니다.
Date.now 에서는 왜 오차가 생기는지도 설명해줍니다.

How To Make Life Easier When Using Git

How To Make Life Easier When Using Git
깃에 관한 팁들을 줍니다.
ex)

# To sort branches by commit date
git branch --sort=-committerdate
# List branches along with commit ID, commit message and remote
git branch -vv

etc