Polymer / prpl-server

⚠️Maintenance mode⚠️ An HTTP server for Node designed to serve PRPL apps in production.
Other
425 stars 29 forks source link

Check file existence asynchronously. #58

Closed aomarks closed 6 years ago

aomarks commented 6 years ago

We shouldn't be using fs.existsSync since it blocks the event loop, which may affect performance with concurrent requests.

aomarks commented 6 years ago

PTAL!