Browsing index pages (2 articles)
↧
How to create a streaming API with NodeJS
How would you go to create a streaming API with Node? just like the Twitter streaming API.What I want to do ultimately is get the first update from the FriendFeed api, and stream when a new one becomes...
View ArticleAnswer by JasonWyatt for How to create a streaming API with NodeJS
You would want to set up a system that keeps track of incoming requests and stores their response objects. Then when it's time to stream a new event from FriendFeed, iterate through their response...
View Article
Browsing index pages (2 articles)