I want to save all the data of a particular or multiple frames in the database. By all data I mean the angle, the x,y & Z coordinates etc provided by leap motion. I am using javascript to do so.
Below is the code of the file. As you can see I am able to extract the data but how to save it in the database?
`Leap.loop(options, function(frame) {
frameString = concatData("frame_id", frame.id);
frameString += concatData("num_hands", frame.hands.length);
frameString += concatData("num_fingers", frame.fingers.length);
frameString += "<br>";`
Should I use some backend language for this or Node.js or some other way if you guys can guide it would be a great help.