akjfal

5일차 본문

공부

5일차

akjfal 2022. 4. 7. 21:35

읽어보면 좋은 글

Babel : https://github.com/jamiebuilds/babel-handbook

 

GitHub - jamiebuilds/babel-handbook: A guided handbook on how to use Babel and how to create plugins for Babel.

:blue_book: A guided handbook on how to use Babel and how to create plugins for Babel. - GitHub - jamiebuilds/babel-handbook: A guided handbook on how to use Babel and how to create plugins for Babel.

github.com

 

--save와 --save-dev의 차이점

--save : node-modules에 설치하고, dependencies 항목에 플러그인 정보가 저장된다.

--save-dev : devDependencies에 항목에 플러그인 정보가 저장된고  --production에 포함되지 않는다.

npm5부터는 --save가 기본옵션이 되었다. -> 기존에는 --save를 하지 않으면 node-modules를 제거 할 시 다시 설치해야 했다.

내일 할 일

https://poiemaweb.com/es6-babel-webpack-1

 

Babel | PoiemaWeb

현재 브라우저는 ES6를 완전하게 지원하지 않는다. ES6+(ES6 이상의 버전)를 사용하여 프로젝트를 진행하려면 ES6+로 작성된 코드를 IE를 포함한 모든 브라우저에서 문제 없이 동작시키기 위한 개발

poiemaweb.com

이거 나머지 설정하기

'공부' 카테고리의 다른 글

7일차  (0) 2022.04.13
6일차  (0) 2022.04.11
4일차  (0) 2022.04.07
2일차  (0) 2022.02.24
1일차  (0) 2022.02.23
Comments