Send heart rate readings from watch to companion, and then from companion to a server using fetch() or WebSocket. (WebSocket may be better suited to real-time data).
I have no idea about the angular side. If your app can't act as a server to receive the data directly, it will need to access it from an intermediate server app that you'll need to develop.
Best AnswerYou could adapt 'Accelerometer Fetcher' from here, but it doesn't try to do real-time streaming. For that, you won't want to batch your readings and you should consider using a WebSocket. Heart rate is easier to send than accelerometer data because there's much less of it; you won't need to do it in binary.
Best Answer