Tag: nodejs
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.
The dark side of Node Modules
Node Modules are a great tool that vastly reduces app development time and cost. However, third-party Node Modules can also cause major security issues and other threats. Let's take a closer look at the dangers of using Node Modules and figure out how to keep our apps safe.