Skip to content

Instantly share code, notes, and snippets.

@markodayan
Last active August 14, 2022 22:34
Show Gist options
  • Save markodayan/b5bbe58f6b6a602a174581cdfc809582 to your computer and use it in GitHub Desktop.
Save markodayan/b5bbe58f6b6a602a174581cdfc809582 to your computer and use it in GitHub Desktop.
JavaScript app - serialise data and send to Golang app
// Step 1
let data = {
name: "Chris Redfield",
age: 30,
job: "STARS soldier",
};
// Step 2 (Serialisation Step)
let serialised = JSON.stringify(data);
// Step 3
sendToGolangApp(serialised);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment