我想将此代码连接到我的mongodb。我如何连接?
使用Socket.io和Twitter Bootstrap以及少量node.js代码行,在NodeJS上使用有效的Twitter流客户端。这就是我跟踪node.js新闻的方式!
twit.stream('user',{track:myList}, function(stream) {
stream.on('data', function (tweet) {
socket.emit('message', JSON.stringify(tweet));
console.log(data.user.screen_name + ':' + data.text);
console.log(data);
console.log("\n\n\n\n");
db.tweakdb.findAndModify({
query:{'id':'data.id'},
update: { $set: data},
upsery:true,
new:true
});
});
});