簡單的記錄本身如何在實際工做中使用gulp和sass的。個人原則是,小而美! css
什麼是gulp?和Grunt同樣,是一種任務管理工具;和Grunt又不同,gulp是一種基於流的,代碼優於配置的新一代構建工具。node
Gulp 和 Grunt 相似,但相比於Grunt的頻繁的IO操做,Gulp的流操做,能更快地完成構建。git
Sass是"Syntactically Awesome StyleSheets"的簡稱。如同less,stylus同樣,是「CSS預處理器」中的一種,你能夠稱其是工具或者是語言。在我看來,sass除了不夠小而美之外,確實是很強大的。Sass官網上是這麼來描述的:github
Sass is an extension of CSS that adds power and elegance to the basic language. It allows you to use variables, nested rules, mixins, inline imports, and more, all with a fully CSS-compatible syntax. Sass helps keep large stylesheets well-organized, and get small stylesheets up and running quickly, particularly with the help of the Compass style library.npm
本身上網谷歌或者百度去!gulp
經過gulp作了以下任務:瀏覽器
首先,確保已經安裝nodejs(nodejs如何安裝?O(∩_∩)O~呵呵)。sass
npm install gulp -g
git clone https://github.com/myqianlan/f2e-workflow.git
cd f2e-workflow npm install
運行bash
```bash gulp help ```
我知道這個流程不夠強大,但倒是最適合個人。期間,我也折騰過各類高大上的流程,但統統都不了了之。因此,大道至簡。服務器