Skip to content

Instantly share code, notes, and snippets.

@pinceladasdaweb
Created September 28, 2015 00:30
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 pinceladasdaweb/ba5b993743b2a7c8811c to your computer and use it in GitHub Desktop.
Save pinceladasdaweb/ba5b993743b2a7c8811c to your computer and use it in GitHub Desktop.
<script>
const render = function (posts) {
posts.responseData.feed.entries.forEach((post, index) => {
console.log(post.title);
console.log(post.content);
console.log(post.link);
});
};
new Feeder({
url: 'http://feeds2.feedburner.com/pinceladasdaweb',
size: 3,
callback: render
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment