Jest
- mock 문법 익히기
프론트 이론 다시보기
- Using node.js require vs. ES06 import.export
vue.js 에서 import, export 사용, 이전에 혼용한 경험이 있어서 다시 찾아보았다.
git command 습관 들이기
- 깃 메세지 수정(amend the git msg)
1 | git commit --amend -m "수정메세지 내용" |
- 하나의 파일만 커밋하고 싶을떄(How to git commit a single file/directory)
1 | git commit -m 'my notes' path/to/my/file.ext |
- 스테이징에 있는 파일 목록 보기(git liist of staged filse)
1 | git diff --name-only --cached |
- windows환경에서 touch 작동 안함
Windows equivalent of ‘touch’ (i.e. the node.js way to create an index.html)
1 | // not working |