I have frontend application in React and backend N...
# random
e
I have frontend application in React and backend Nodejs. I want to store frontend logs on server side can someone please share any libraries/packages which might be helpful? I want to store some info like how many times some button was clicked on frontend or how many times user visited particular page etc I was thinking of making REST calls or make use of websockets to maintain logs on server. What all options do I have? any good approach other than websockets or REST calls?
l
Do you need to track these logs to a particular user? If not, Google Analytics may work for you. (You cannot pass identifiable information as per their TOS). There are other services as well like mixpanel. Worth checking out instead of writing your own service.
👍 1
f
e
e
Thanks everyone