> For the complete documentation index, see [llms.txt](https://yamoo9.gitbook.io/scss-mixins/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://yamoo9.gitbook.io/scss-mixins/getting-started/install-and-import-package.md).

# 시작하기

## 패키지 설치

[@euid/scss-mixins](https://www.npmjs.com/package/@euid/scss-mixins) 패키지 설치는 다음의 2가지 방법 중 하나를 선택해 사용할 수 있습니다.

#### **방법 1.** [**NPM**](https://npmjs.com) **명령을 사용해** [**@euid/scss-mixins**](https://www.npmjs.com/package/@euid/scss-mixins) **패키지 설치 (권장)**

```bash
npm i @euid/scss-mixins
```

#### **방법 2. GitHub** [**yamoo9/scss-mixins**](https://github.com/yamoo9/scss-mixins) **저장소 복제**

```bash
git clone https://github.com/yamoo9/scss-mixins.git
```

## 패키지 호출 <a href="#import" id="import"></a>

[@euid/scss-mixins](https://www.npmjs.com/package/@euid/scss-mixins) 패키지 호출은 다음의 2가지 방법 중 하나를 선택해 사용할 수 있습니다.

#### **방법 1. 상대 경로 활용**

별도 설정 없이 패키지를 호출해 사용할 경우, 상대 경로 방식으로 [@euid/scss-mixins](https://www.npmjs.com/package/@euid/scss-mixins) 패키지를 찾습니다.

```javascript
@import '../node_modules/@euid/scss-mixins';
```

#### **방법 2. 임포트 경로(load path) 설정 (권장)**

[Dart Sass CLI](https://sass-lang.com/documentation/cli/dart-sass) 명령을 사용해 `node_modules` 디렉토리의 패키지를 불러올 수 있도록 설정합니다.

```python
sass -I node_modules src/sass:dist/css
```

{% hint style="info" %}
컴파일 명령을 실행할 때, 전달하는`-I` 는 `--load-path` 옵션의 단축 옵션입니다. 단축 옵션을 사용하지 않을 경우 다음과 같이 명령문을 작성해 실행할 수 있습니다.

```bash
sass --load-path=node_modules src/sass:dist/css
```

{% endhint %}

패키지에서 모든 믹스인을 가져와 사용하려면 다음과 같이 호출 코드를 작성합니다.

```css
@import '@euid/scss-mixins';
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://yamoo9.gitbook.io/scss-mixins/getting-started/install-and-import-package.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
