0

我完全是 Express.js 的初学者,我正在尝试使用 Express、js、Jade 和 Less 构建一个简单的网站。我创建文件夹项目的方式是:

 $ mkdir myProj
 $ cd myProj
 $ express --sessions --css less

最近我听说了 bootstrap,我想将它包含在我的项目中。我试图找到有关如何添加和包含引导程序的在线教程,我尝试这样做的方法是:

 --> download bootstrap from the official page
 --> add the downloaded folder in public/lib/bootstrap
 --> include the css files in the layout.jade as follows: link(rel='stylesheet', href='/lib/bootstrap/css/bootstrap.css')

据我所见,它正在工作。但我不确定这是否是在 Express.js 中包含引导程序的正确方法。有没有其他方法可以在 Express.js 中包含引导程序,我的方法是否正确?

4

1 回答 1

0

这个怎么样?

$ npm install -g twitter-bootstrap-node

# Create the project: (Default css engine is "less",And template engine is "jade")

$ twitter-bootstrap project
$ cd project
$ node app.js
于 2013-07-16T18:32:27.240 回答