Skip to content

Instantly share code, notes, and snippets.

@bookercodes
Created August 2, 2017 14:37
Show Gist options
  • Save bookercodes/48958dd675596878ff6fbcba4e090824 to your computer and use it in GitHub Desktop.
Save bookercodes/48958dd675596878ff6fbcba4e090824 to your computer and use it in GitHub Desktop.
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>Comments</h2>
<div id="container">
<div id="comments">
</div>
</div>
<script src="https://unpkg.com/[email protected]"></script>
<script>
const feeds = new Feeds({
instanceId: "v1:us1:db70340f-fea5-4394-8636-3b089f51fe95",
})
const commentsFeed = feeds.feed("comments4")
commentsFeed.subscribe({
previousItems: 100,
onItem: ({ body }) => {
console.log("Feeds new item:", body.data);
document.body.innerHTML +=
`<p>${JSON.stringify(body.data)}</p>`;
}
})
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment