Socket
Socket
Sign inDemoInstall

mongo-feed

Package Overview
Dependencies
3
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mongo-feed

Generic feed-like service that uses mongo and provides a post/recent api


Version published
Weekly downloads
2
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Minimalist feed service using mongo

Build Status

Description

var mongoFeed = require('mongo-feed');
var feed = new MongoFeed('db,'Test Feed');
feed.post({a:1,b:2},cb);
// later...
feed.post({x:11,z:22},cb);
// later...
feed.post({w:9,m:8},cb);
// later...
feed.recent(10,null, function(err,items) {
// items would be [
//     { w:9,m:8,_feed_posted_on : <ts>, _feed_seq_no : 3},
//     { x:11,z:22,_feed_posted_on : <ts>, _feed_seq_no : 2},
//     { a:1,b:2,_feed_posted_on : <ts>, _feed_seq_no : 1}
//  ]
});
feed.recent(10,2, function(err,items) {
// items would be [ { x:11,z:22,_feed_posted_on : <ts>, _feed_seq_no : 2}  ]

The module reserves attributes prefixed with _feed. It currently adds the following two attributes

  • _feed_seq_no - unique sequencial id starting from 1 for the first post
  • _feed_posted_on datetime in this format : 2014-03-01T16:30:38.909Z

The module allows posting an object multiple times, ie, you can safely include an _id attribute in the posted object.

Installation

Installing the module

npm install mongo-feed

Keywords

FAQs

Last updated on 01 Mar 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc