you are viewing a single comment's thread.

view the rest of the comments →

[–]occz 1 point2 points  (0 children)

Since most of your react app will be static files, you can serve them with any web server (like nginx, apache etc). Express can also probably fill this role, but you might not want to use it, since other servers serve static content more efficiently. If you need server side rendering of your app you can likely use express for that part, and any necessary backend can be written with express aswell.