W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
有了連接中間件,無論Stylus片段什么時候改變,這些片段都能夠自動編譯。
返回給定options下的連接中間件。
`serve` Serve the stylus files from `dest` [true] `force` Always re-compile `src` Source directory used to find .styl files `dest` Destination directory used to output .css files when undefined defaults to `src`. `compile` Custom compile function, accepting the arguments `(str, path)`. `compress` Whether the output .css files should be compressed `firebug` Emits debug infos in the generated css that can be used by the FireStylus Firebug plugin `linenos` Emits comments in the generated css indicating the corresponding stylus line
上面中文翻譯如下:
`serve` 從 `dest` 提供stylus文件 [true] `force` 總是重新編譯 `src` 資源目錄用來查找 .styl 文件 `dest` `src`默認為undefined時,用來輸出 .css 文件的目標目錄 `compile` 自定義編譯函數(shù),接受參數(shù)`(str, path)`. `compress` 是否輸出的 .css 文件要被壓縮 `firebug` 生成的CSS中發(fā)出調(diào)試信息,可被Firebug插件FireStylus使 用 `linenos` 生成的CSS中發(fā)出注解,表明響應的stylus行
從./public提供.styl文件。
var app = connect(); app.middleware(__dirname + '/public');
改變src以及dest項來修改.styl文件哪里被加載,哪里被保存。
var app = connect(); app.middleware({ src: __dirname + '/stylesheets', dest: __dirname + '/public' });
這里我們建立自定義的編譯函數(shù),這樣,我們就能設置compress項,或是定義附加的函數(shù)。
默認情況下,編譯函數(shù)是簡單地設置filename以及渲染CSS. 在下面這個例子中,我們壓縮輸出內(nèi)容,使用"nib"庫插件,以及自動導入。
function compile(str, path) { return stylus(str) .set('filename', path) .set('compress', true) .use(nib()) .import('nib'); }
作為選項傳遞應該像這樣:
var app = connect(); app.middleware({ src: __dirname , dest: __dirname + '/public' , compile: compile })
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: