Installation and setup process of SASS and scss | YourSite

Installation and setup process of SASS and scss


npm init
Give all related information then click enter to create package Install Sass:

npm install --save-dev sass
Install Bootstrap:

npm install bootstrap --save
Install Fontawesome:

npm install --save @fortawesome/fontawesome-free
Install AutoPrefixer:

npm install autoprefixer --save
npm install postcss-cli autoprefixer --save
Change Script in package: From:

  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
To:

  "scripts": {
    "compile:sass": "sass scss:assets/css"
  },
Before Run the below script create folder "scss" in your project and create a file called "style.scss" inside the folder then run. Run Script:

npm run compile:sass
See changed real time changes for that change script to watch:

 "scripts": {
    "compile:sass": "sass --watch scss:assets/css"
  },

🚀 More Blogs You Might Like

Explore more articles and keep learning

How to Grow Your Business Mindset Step by Step
skill
How to Grow Your Business Mindset Step by Step

How to Grow Your Business Mindset Step by Step...

👁 34 2026-05-09
Read More →
Popular IT Sector Buzzwords You Should Know in 2026
skill
Popular IT Sector Buzzwords You Should Know in 2026

Popular IT Sector Buzzwords You Should Know in 2026...

👁 50 2026-05-07
Read More →
Synergy: One of the Most Powerful Corporate & Management Buzzwords
skill
Synergy: One of the Most Powerful Corporate & Management Buzzwords

Synergy: One of the Most Powerful Corporate & Management Buzzwords...

👁 37 2026-05-07
Read More →
Key Lessons for Career Growth
life-lesson
Key Lessons for Career Growth

Boost your career with key lessons on communication, consistency, job switching, and fundamentals. Learn how t...

👁 97 2026-05-03
Read More →