
Node.js 설치
Sass 설치
npm install -g sass 
프로젝트 설정
sass --watch input.scss output.css

style.css.map 파일 자동 생성되고 style.css 파일 자동으로 채워진다 → html stylesheet로는 기존에 하던대로 style.css 사용결과 (사진 오른쪽이 scstyle.scss, 왼쪽이 변환된 style.css)
scstyle.scss : body { header {… } … }
style.css : body {…} body header { …}

$main-color: #487aa3;
header {
color: $main-color;
...
}