Skip to content

Instantly share code, notes, and snippets.

@carbide-public
Created January 14, 2021 05:43
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 carbide-public/83b2f140a1be4824897e58c189d71abd to your computer and use it in GitHub Desktop.
Save carbide-public/83b2f140a1be4824897e58c189d71abd to your computer and use it in GitHub Desktop.
dshksjhdfkjahsdf
let url = 'https://api.github.com/repos/StrangeRanger/customized-unix-terminal/releases/latest';
fetch(url)
.then(res => res.json())
.then((out) => {
console.log('Checkout this JSON! ', out);
})
.catch(err => { throw err });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment