dependabot[bot] on npm_and_yarn
Bump cookiejar from 2.1.2 to 2.… (compare)
dependabot[bot] on npm_and_yarn
Bump qs from 6.9.3 to 6.11.0 B… (compare)
dependabot[bot] on npm_and_yarn
Bump degenerator and proxy-agen… (compare)
jkutianski on master
Solve CVE-2021-28918 (compare)
dependabot[bot] on npm_and_yarn
jkutianski on master
Change proxy-agent to 3.1.1 (compare)
router.get('/groups', function (req, res, next) {
req.meetup.getGroup({
member_id: 'self'
}, function (err, resp) {
if(err){
console.error('Found meetup error', err);
return next(err);
}
res.send(resp);
});
});
This is a call to RSVPS stream on meetup module
mup.stream("/2/rsvps", function(stream){
stream
.on("data", function(item){
console.log("got item " + item)
}).on("error", function(e) {
console.log("error! " + e)
});
});
and this one is the same for meetup-api (long pooling)
meetup.getRSVPs(null, function(err, resp) {
if (err) {
console.log(err, resp);
})
meetup.getStreamRSVPs()
.on('data', function(item) {
console.log("got item ", item);
})
.on('error', function(err) {
console.log("error! ", err);
})
.on('close', function() {
console.log("Stream closed!");
});