Package Exports
- rijs.backpressure
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (rijs.backpressure) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Ripple | Backpressure
By default, the Sync module sends all resources to all clients. Users can limit this or change the representation sent to clients for each resource using the to transformation function. This module alters the default behaviour to only send resources and updates to clients for resources that they are using to eliminate over-fetching. You can still use the to hook to add extra business logic on top of this.
This works with both the declarative usage:
<twitter-feed data="tweets" css="styles.css">// you will be sent twitter-feed, tweets, and styles.cssAnd the imperative usage:
ripple('object') // will eventually resolve to value from serverTODO
- Explore subresource tracking
- Explore untracking