Skip to content

Instantly share code, notes, and snippets.

@evert
Last active March 6, 2019 23:57
Show Gist options
  • Save evert/3d21a289b6b518bbdb7279249e887a88 to your computer and use it in GitHub Desktop.
Save evert/3d21a289b6b518bbdb7279249e887a88 to your computer and use it in GitHub Desktop.
const Ketting = require('ketting').default;
const k = new Ketting('https://hal-browser.evertpot.com/games');
const main = async () => {
const games = k.go();
console.log(await games.get());
// GOAL: Figure out how to add Prefer-Push: console to the FIRST request
const con = await games.follow('item').follow('console');
console.log(await con.get());
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment