Skip to content

Instantly share code, notes, and snippets.

@iamshouvikmitra
Created August 8, 2021 07:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamshouvikmitra/c092eb2fdc27aecba0bb3cc5446252a1 to your computer and use it in GitHub Desktop.
Save iamshouvikmitra/c092eb2fdc27aecba0bb3cc5446252a1 to your computer and use it in GitHub Desktop.
const url = "https://nvgs.com/analytics";
const data = JSON.stringify({
event: "checkout",
time: performance.now()
});
fetch(url, {
method: 'POST',
body: data,
keepalive: true
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment