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

[우창완] 챕터 11: 네임스페이스 패턴 #92

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

WooWan
Copy link
Contributor

@WooWan WooWan commented Nov 24, 2024

No description provided.

Comment on lines +87 to +120
토스 es-toolkit [빌드 설정 파일](https://github.com/toss/es-toolkit/blob/626af3b292fbd169f9f296d0e5edcdaa263b0f8f/rollup.config.mjs#L101)을 살펴보자. rollup을 이용하여 browser용으로 빌드할 때, `format: iife` 로 설정되어있는 것을 볼 수 있다.

```js
// IIFE를 설정하여, 글로벌 네임스페이스 오염을 방지한다.
output: {
format: 'iife',
name, // "_"로 설정함.
file: outFile,
sourcemap,
generatedCode: 'es2015',
},
};
```



직접 빌드해보면, 아래 내용을 가진 browser.global.js 로 빌드된 것을 볼 수 있다.

```js
var _=function(t){"use strict";function at(t,e)...}
```



이것을 script 형태로 사용한다면, 아래와 같이 사용할 수 있을 것이다.

```html
<!-- 브라우저에서 직접 <script> 태그로 사용 가능 -->
<script src="browser.global.js"></script>
<script>
// 라이브러리가 전역 _ 변수로 노출됨
_.someFunction();
</script>
```
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이 부분 처음 알았어요! 발표 잘 들었습니다 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants