Skip to content Skip to sidebar Skip to footer

How Can I Dynamically Generate Html Content With Node.js?

I understand how I can serve Html pages through Node.js to a client. Now I'm looking for a way to programatically generate Html on the server side (and then do whatever I want with

Solution 1:

I think for your purpose reactjs might be the library to look at. It creates a virtual DOM node which is stateful and changes only on statechanges.

for serverside rendering this might be perfect for you! ;)

Post a Comment for "How Can I Dynamically Generate Html Content With Node.js?"