1. npm(node package manager)
- 자바스크립트 라이브러리를 관리하는 프로그램.
npm | build amazing things
Build amazing things We're npm, Inc., the company behind Node package manager, the npm Registry, and npm CLI. We offer those to the community for free, but our day job is building and selling useful tools for developers like you. Take your JavaScript devel
www.npmjs.com
- node_modules폴더에 자바스크립트 라이브러리를 저장하고 package.json에 정보(해당 자바스크립트의 정보만)를 저장.
- project 진행 시 package.json에 있는 자바스크립트만 다운받아 필요한 라이브러리만 사용 할 수 있게 하기위해서.
2. 웹팩
- 웹에서 사용되는 모든 자원(HTML, javascript, css 등등) 을 번들링 해주는 도구.
- 번들링 : 여러개의 파일들 중에서 종속성이 존재하는 파일을 하나의 파일로 묶어 패키징하는 과정.
- 번들링 과정을 함으로써 네트워크 요청이 줄이는 등의 효과가 있다.
'웹 개발 > react' 카테고리의 다른 글
인텔리제이(intellij)에서 react 공부 시 알면 좋은 PlugIn (0) | 2020.03.17 |
---|---|
인텔리제이(Intellij) react 사용하기. (0) | 2020.03.17 |