Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the better approach: serving static files with Express or nginx?

I'm building a Node.js applications and I'm using nginx as a reverse proxy. My application has some static files I need to serve and a Socket.io server.

I know that I can serve static files directly with Express (using express.static middleware). Also I can point nginx directly to the directory where my static files are located, so they would be served by nginx.

So, the question: which one is the better approach? Which pros and cons can I face while using each approach?

like image 348
serge1peshcoff Avatar asked Jun 28 '17 07:06

serge1peshcoff


2 Answers

for development: express, mainly because of flexibility it provides... you can change your static location and structure very easily during development

for production: nginx, because its much much faster. Node/express are good for executing logic, but for serving raw content... nothing can beat nginx. You also get additional capabilities such as gzip, load balancing...

Nevertheless, this question has been asked in stackoverflow a number of times already: see

  • node.js itself or nginx frontend for serving static files? or
  • Using Node.js only vs. using Node.js with Apache/Nginx or
  • Which is most efficient : serving static files directly by nginx or by node via nginx reverse proxy?
like image 112
tato Avatar answered Nov 14 '22 09:11

tato


The Express documentation explicitly recommends using a reverse proxy where possible. To quote from this article:

Nginx can do a much better job of handling static files and can prevent requests for non-dynamic content from clogging our node processes.

There's an awful lot of articles discussing the subject which go into greater detail, but I would definitely heed the recommendations made by the Express developers.

like image 26
Matthew Daly Avatar answered Nov 14 '22 08:11

Matthew Daly