出现下面这些同学说的情况是因为你们根目录没有html2jade
npm install html2jade --save 就行
npm install html2jade --save 就行
2017-06-19
为了给新来的同学一些提示:jade现在已经重命名到pug,所有建议大家切换到新的模板引擎Pug,而不再使用Jade,虽然现在官方对Jade还在支持。
新的Pug使用pug-cli作为命令行 ,安装 npm install pug-cli -g 而不是 npm install jade -g 了。
语法还都一样。jade -P -w demo.jade 修改成 pug -P -w demo.pug 来使用。
官方API文档:https://pugjs.org/zh-cn/api/getting-started.html
新的Pug使用pug-cli作为命令行 ,安装 npm install pug-cli -g 而不是 npm install jade -g 了。
语法还都一样。jade -P -w demo.jade 修改成 pug -P -w demo.pug 来使用。
官方API文档:https://pugjs.org/zh-cn/api/getting-started.html
2017-06-04
嘻嘻,发现npm无法安装jade了吧,改名字啦。使用 `npm(cnpm) install pug -g`,然后发现还无法使用,再来个`npm(cnpm) install pug-cli -g`,然后`pug index.jade`,就可以啦
2017-05-27