Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peerlibrary/meteor-extend-publish
Helper to easier extend Meteor.publish
https://github.com/peerlibrary/meteor-extend-publish
ddp ddp-publish meteor meteor-package
Last synced: about 1 month ago
JSON representation
Helper to easier extend Meteor.publish
- Host: GitHub
- URL: https://github.com/peerlibrary/meteor-extend-publish
- Owner: peerlibrary
- Created: 2017-04-24T01:57:40.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-09-20T01:37:40.000Z (over 5 years ago)
- Last Synced: 2024-11-09T06:06:03.753Z (3 months ago)
- Topics: ddp, ddp-publish, meteor, meteor-package
- Language: CoffeeScript
- Homepage: https://atmospherejs.com/peerlibrary/extend-publish
- Size: 4.88 KB
- Stars: 0
- Watchers: 6
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Helper to easier extend Meteor.publish
======================================This Meteor smart package provides `extendPublish` helper. You should pass to it a function which receives
`name`, `func`, `options` and returns an array of potentially new values to be passed to `Meteor.publish`.
After `extendPublish` has been called (potentially multiple times), every call to `Meteor.publish` will first
call this function (or functions) instead, before passing arguments to core `Meteor.publish`.Server side only.
Installation
------------```
meteor add peerlibrary:extend-publish
```