How do I properly set routes up for a Single Page App using Express.js? How do I properly set routes up for a Single Page App using Express.js? express express

How do I properly set routes up for a Single Page App using Express.js?


The basic thing you have to do is:

  • define routes which your back-end app has to respond with the spa
  • send your "skeleton" file to the response on that routes

Example code:

const handler = (req, res) => res.send(path.join(__dirname, "path/to/your/index.html"))const routes = ["/", "/hello", "/world"]routes.forEach( route => app.get(route, handler) )

This should get you started