全域安裝 pug
npm install -g pug
安裝 pug 的命令列文件 也是全域安裝
npm install -g pug-cli
建立網站專案 終端機到專案根目錄
測試編譯 下面是建立一個 test.pug 檔案,然後用終端機命令編譯它。 test.pug 內容可以是:
doctype html
head
meta(charset='utf-8')
title First file of pug
body
h1 This is my first pug
div
.div1
p that some content in here
i point
終端機命令:
pug test.pug
成功編譯就會出現 test.html. 程式碼是壓縮版的 以後可以用
pug -P -w test.pug
可以有格式化的編譯,同時監聽檔案,有變動就自動編譯
到 入门指南– Pug 學習更多 pug
/