Give all related information then click enter to create package Install Sass:npm init
Install Bootstrap:npm install --save-dev sass
Install Fontawesome:npm install bootstrap --save
Install AutoPrefixer:npm install --save @fortawesome/fontawesome-free
Change Script in package: From:npm install autoprefixer --save npm install postcss-cli autoprefixer --save
To:"scripts": { "test": "echo \"Error: no test specified\" && exit 1" },
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:"scripts": { "compile:sass": "sass scss:assets/css" },
See changed real time changes for that change script to watch:npm run compile:sass
"scripts": { "compile:sass": "sass --watch scss:assets/css" },