Does express.static() cache files in the memory?
The static middleware does no server-side caching. It lets you do two methods of client-side caching: ETag and Max-Age: If the browser sees the ETag with the page, it will cache it. The next time the browser loads the page it checks for the ETag number changes. If the file is exactly the same, and … Read more