Generating HTML files in Node.js with React
Sometimes there is a need to generate HTML files in Node.js - for example to create a report or HTML e-mail. This can be done with string concatenation and template literals, but it's not very convenient. Wouldn't it be great if could just use React to generate HTML? Let's see how to do that.