Skip to content

Instantly share code, notes, and snippets.

@vinnyoodles
Created December 25, 2016 04:24
Show Gist options
  • Save vinnyoodles/026ec50b299526b40dd20a0d84d705b8 to your computer and use it in GitHub Desktop.
Save vinnyoodles/026ec50b299526b40dd20a0d84d705b8 to your computer and use it in GitHub Desktop.
React Native Socket.io Existing Messages
socket.on('connection', () => {
var messages = db.collection('messages').find({
chatId: chatId // We want all the messages for that room.
}).sort({
createdAt: -1 // It's best not to assume that it is in order.
});
socket.emit('message', messages);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment