Easy way to include multiple route handler files in Express
Purpose of this article
When you make backend server using Express, you usually write multiple files for route handlers. Every times you add new route file, you have to include that file in app.js like this app.use('/route', routeHandler);.
I will in...
vaja.hashnode.dev3 min read