I've read some blog articles about setting up a basic template using twitter bootstrap and serving it from nodejs. There seems to be a lot of ways to achieve this using express and jade or another render engine.
My questions are what is the best way to do this? Are some render engines better than others?
Any suggestions welcome.
Thanks in advance Ric
I use Express and Jade on Heroku with my projects and I use Twitter Bootstrap. Since Twitter Bootstrap is just a couple of css files and javascript plugins, your question doesn't really make sense. Twitter Bootstrap isn't different than including any other type of library you use on your web pages, so really you're asking how to serve pages in Node.js.
Just lookup the syntax for including files in jade here and then learn how to serve pages on Heroku here
Another alternative is Embedded JavaScript. Lightning fast and you won't have to learn a new syntax.