home

sass

  • LTS(Long Term Supported) 버전 : 안정성과 보안성에 초점을 두어 개발 (서버로 사용할려면 LTS를 사용)
  • Current : 잦은 업데이트를 진행 (프론트엔드 개발쪽은 Current 추천)

버전 확인

Command Prompt
Microsoft Windows [Version 10.0.18363.1256]
(c) 2019 Microsoft Corporation. All rights reserved.

C:\Users\user>node -v v14.15.1

Command Prompt
Microsoft Windows [Version 10.0.18363.1256]
(c) 2019 Microsoft Corporation. All rights reserved.

C:\Users\user>npm -v 6.14.8

npm을 이용해 sass설치

Command Prompt
Microsoft Windows [Version 10.0.18363.1256]
(c) 2019 Microsoft Corporation. All rights reserved.

C:\Users\user>npm install -g sass

프로젝트 폴더 진입

- 진입할 경로 (e\project)

Command Prompt
Microsoft Windows [Version 10.0.18363.1256]
(c) 2019 Microsoft Corporation. All rights reserved.

C:\Users\user>e: E:\>cd project E:\project>

컴파일

- 수동 ()

Command Prompt
Microsoft Windows [Version 10.0.18363.1256]
(c) 2019 Microsoft Corporation. All rights reserved.

C:\Users\user>sass scss/input.scss:css/output.css

- 자동 ()

Command Prompt
Microsoft Windows [Version 10.0.18363.1256]
(c) 2019 Microsoft Corporation. All rights reserved.

C:\Users\user>sass --watch scss/input.scss css/output.css