Skip to content

Instantly share code, notes, and snippets.

@shalvah
Last active February 14, 2018 08:03
Show Gist options
  • Save shalvah/94139c27d10ba4b2140dc7f517cd5837 to your computer and use it in GitHub Desktop.
Save shalvah/94139c27d10ba4b2140dc7f517cd5837 to your computer and use it in GitHub Desktop.
Twitter-Realtime-Likes
let mongoose = require('mongoose');
let Post = mongoose.model('Post', {
text: String,
posted_at: Date,
likes_count: Number,
author: String
});
module.exports = Post;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment