Nodejs, Express, Nginx And Jade... Whats The Deal?
Solution 1:
Reasonable recommendations:
- Serve static files with NGINX, you can configure it to fetch the files directly.
- Serve dynamic files with NGINX proxied to your express app, and set an adequate cache value.
Can the serving of HTML (generated by Jade/Pug), using Express routes be handed over to Nginx in order to boost performance?
Yes if you cache.
Or is it the case that if you're using Express routing, you have to accept that serving of HTML files will be slow?
Not if you cache.
I hope that helps!
Solution 2:
Without questioning for more details, I can point out some things i keep in mind when developing on Express:
- Express "default" rendering done through
res.render
may not be optimal for a number of reasons. For example, lookup for the template file which is recalculated every request - Jade template engine doesn't support streaming
I would suggest, before looking at interventions outside application context (such as Varnish or plain Nginx conf), to try:
using a template engine supporting streaming: Marko, Dust, Nunjucks
if the app is a single-page, or generally an ajax based one, and you don't need any special SEO setup (although, there are fixes for that too), you may also pre-cache the static html then fill it up on the client (but this is really just a rant).
A good overview comes from Strongloop's blog post
Post a Comment for "Nodejs, Express, Nginx And Jade... Whats The Deal?"