song.log

[What is] Webpack & Babel 본문

StudyLog/Tech Interview

[What is] Webpack & Babel

SingaKorean 2020. 1. 10. 18:16
반응형

  • Webpack :

웹팩은 모듈번들러(Module Bundler)이다. 직역하면 프로그램의 기능을 하는 단위를 묶어주는 것. 즉, 여러가지 파일을 모아서 하나로 만드는 역할을 하는 것이다. 

 

Webpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it is also capable of transforming, bundling, or packaging just about any resource or asset. Webpack has become one of the most important tools for modern web development.

 

참고한 URL : 

https://www.sitepoint.com/beginners-guide-webpack-module-bundling/

 

A Beginner’s Guide to Webpack 4 and Module Bundling — SitePoint

In this beginner-friendly Webpack 4 tutorial, Mark Brown demonstrates how to set up and configure Webpack to transform and bundle all your front-end assets.

www.sitepoint.com

 

 

  • Babel

바벨은 자바스크립트 컴파일러이다. 자바스크립트가 더 많은 사랑을 받으면서 많은 사람들이 필요로 하는 문법, 소스들을 새로 만들고 있다. 이 새로운 문법/소스가 바로 적용되지 않을 경우, 모르는 경우 등에 쓰일 수 있는 변환기가 이 '바벨'이다. 

 

https://babeljs.io/docs/en/

 

Babel · The compiler for next generation JavaScript

The compiler for next generation JavaScript

babeljs.io

 

반응형
Comments