Send and show data to a html/js file

Hello Unity community,

i am currently using Unity3D a bit differently as an animation support for industrial robots. I get all the sensor data in my unity c# framework and get it animated there.
I was wondering now if there is any possibility to send those sensor numbers, which i get into unity out on a server and observe them somewhere else.

My idea now is to open a connection with node.js and socket.io. I want send my JSON data to node.js and after that receive it in an html page.

Is that possible or does anybody know a similar project/solution? (my programming skills are pretty bad, i guess)

Best regards

Why can’t the other destination just come to the same server that your Unity goes to to get its data? Two different clients connecting to the server, pulling the same data…

You could simply send the data via UnityWebRequest to for example a php file and save them into a database, or save the json files somewhere. It’s then pretty simple to use those saved data in your webpage with other technologies to show your graphs and monitoring stuff.