Easy SASS project and compile with npm.

Cách đơn giản nhất: sudo gem install sass hoặc dùng terminal bằng lệnh sau: sass --watch style.scss:css/style.css

#Install Node.js
sudo apt-get update
sudo apt-get install nodejs
sudo apt-get install npm
nodejs -v
#Install NPM
sudo apt install npm
npm -v
#Write {} in the package.json file.
{
	"scripts": {
 		"scss": "node-sass  -- watch scss -o css"
 	}
}
$npm install node-sass
Craete scss folder and create styles.scss file.
Create css folder.
Run the Script: npm run scss
Write this code into the styles.scss
$test: red;
body {
 background-color: $test;
}
Link: https://medium.com/@kanokpit.skuberg/easy-sass-project-and-compile-with-npm-5861457195b5
Link: https://webdesign.tutsplus.com/vi/tutorials/watch-and-compile-sass-in-five-quick-steps--cms-282
Cách đã thực hiện được
npm install -g sass
Cách biên dich ra folder:
Vào trực tiếp thư mục chứa file style.scss lấy lệnh sau:
sass style.scss css/index.css
Hoặc: sass --watch style.scss:style.css
Hoặc cách đơn giản nhất: sudo apt install ruby-sass

Last updated