I have a node.js server, with express, which contains a POST which is called when a form is filled in to return data from twitter. Now the POST works as expected and currently I am just using:
res.status('Tweets').send(tweettxt);
With tweettxt being an object of all the tweets returned. Now this just creates a blank page which displays this object, but is there a way to dynamically add to the existing HTML page with the form this data?