Created
August 2, 2017 14:37
-
-
Save bookercodes/48958dd675596878ff6fbcba4e090824 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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