Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 2024-05-01-Bundler.md #76

Merged
merged 1 commit into from
Jun 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions _posts/2024-05-01-Bundler.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ published: true

그 중 웹팩은 가장 널리 사용되는 번들러 중 하나로, 최신 자바스크립트 표준을 따라 ES6 모듈, CommonJS, AMD 등 다양한 모듈 시스템을 지원하며, 다양한 플러그인을 제공해 코드 최적화, 환경 변수 설정, 파일 압축, 번들 분석 등 다양한 기능을 수행할 수 있다.

## 웹팩이란

<!--
### Babel을 통한 문법 변환
Babel은 최신 JavaScript 문법을 구형 브라우저에서도 사용할 수 있도록 ES6/ES7 등의 최신 문법을 ES5 문법으로 변환해주는 트랜스파일러이다. Babel을 사용하면 최신 JavaScript 기능을 사용하면서도 구형 브라우저 호환성을 유지할 수 있다. 번들러와 함께 사용하여 코드 변환과 번들링을 동시에 처리할 수 있다.
Expand Down
Loading