An open API service indexing awesome lists of open source software.

https://github.com/rt2zz/multidexor

Simple interface for collections of indexor indexes
https://github.com/rt2zz/multidexor

Last synced: 18 days ago
JSON representation

Simple interface for collections of indexor indexes

Awesome Lists containing this project

README

        

# multidexor
Simple interface for collections of indexor indexes

## usage
```js
var Multidex = require('multidexor')

var feeds = Multidex({cursorTranslator: translator }) //where translator derives a useful cursor form the PostID

getSomeFeedData(function(FeedID, posts){
feeds(FeedID).append(posts)
})

feeds(FeedID) //returns indexor object
```