findmentor-network / analytics

We want to create a new-gen analytics platform for developers to developers. This project's aim is a one-click analytics solution for open-source projects & more.
https://analytx.dev/
MIT License
18 stars 6 forks source link

Fetch requests must be sendBeacon #13

Closed cagataycali closed 3 years ago

cagataycali commented 3 years ago

https://developer.mozilla.org/en-US/docs/Web/API/Navigator/sendBeacon

window.onsubmit = function send_analytics() {
  var data = JSON.stringify({
    location: location.href,
    time: Date()
  });

  navigator.sendBeacon('/analytics', data);
};