Skip to content

Instantly share code, notes, and snippets.

@ankryption
Last active February 25, 2019 19:19
Show Gist options
  • Save ankryption/cb9a196acda1aed6794dca2ac4add9d6 to your computer and use it in GitHub Desktop.
Save ankryption/cb9a196acda1aed6794dca2ac4add9d6 to your computer and use it in GitHub Desktop.
const axios = require('axios');
async function follow(url) {
const { data } = await axios(url);
// display the route
console.log('data: ', data);
// the end: nothing to follow
if (!data || !data.follow) return;
// correct url to go deeper
await follow(data.follow.replace('challenge?', 'challenge.json?'));
}
follow('http://letsrevolutionizetesting.com/challenge.json');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment