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
- Host: GitHub
- URL: https://github.com/rt2zz/multidexor
- Owner: rt2zz
- Created: 2015-03-06T09:51:27.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-06T10:01:20.000Z (about 10 years ago)
- Last Synced: 2025-05-03T08:00:43.980Z (22 days ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```