New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-native-meteor

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-meteor - npm Package Compare versions

Comparing version 1.0.0-beta23 to 1.0.0-beta24

src/CollectionFS/FSCollection.js

2

package.json
{
"name": "react-native-meteor",
"version": "1.0.0-beta23",
"version": "1.0.0-beta24",
"description": "Full Meteor Client for React Native",

@@ -5,0 +5,0 @@ "main": "src/Meteor.js",

@@ -101,4 +101,4 @@ # react-native-meteor [![react-native-meteor](http://img.shields.io/npm/dm/react-native-meteor.svg)](https://www.npmjs.org/package/react-native-meteor) [![npm version](https://badge.fury.io/js/react-native-meteor.svg)](http://badge.fury.io/js/react-native-meteor) [![Dependency Status](https://david-dm.org/inProgress-team/react-native-meteor.svg)](https://david-dm.org/inProgress-team/react-native-meteor)

* [.remove(id, callback(err, countRemoved))](http://docs.meteor.com/#/full/remove)
* Meteor.FSCollection(collectionName) : Helper for [Meteor-CollectionFS](https://github.com/CollectionFS/Meteor-CollectionFS). Full documentation [here](https://github.com/inProgress-team/react-native-meteor/blob/master/docs/FSCollection.md)
# MeteorListView Component

@@ -179,2 +179,17 @@

## CollectionFS
* Meteor.FSCollection(collectionName) : Helper for [Meteor-CollectionFS](https://github.com/CollectionFS/Meteor-CollectionFS). Full documentation [here](https://github.com/inProgress-team/react-native-meteor/blob/master/docs/FSCollection.md)
* This plugin also exposes a FSCollectionImagesPreloader component which helps you preload every image you want in CollectionFS
```javascript
import { FSCollectionImagesPreloader } from 'react-native-meteor';
<FSCollectionImagesPreloader
collection="imagesFiles"
selector={{metadata.owner: XXX}}
/>
```
## react-native-router-flux

@@ -186,2 +201,5 @@

Pull Requests are welcome ! :)
# Want to help ?
Pull Requests and issues reported are welcome ! :)

@@ -17,2 +17,3 @@ import Trackr from 'trackr';

if(this.startMeteorSubscriptions) {
console.warn('startMeteorSubscriptions is deprecated and will be removed soon. Please create your subscriptions in getMeteorData');
this._meteorSubscriptionsManager = new MeteorSubscriptionsManager(this);

@@ -19,0 +20,0 @@ this._meteorSubscriptionsManager.getMeteorSubscriptions();

@@ -12,3 +12,2 @@

import collection from './Collection';
import FSCollection from './FSCollection';
import call from './Call';

@@ -19,2 +18,6 @@

import MeteorComplexListView from './components/ComplexListView';
import FSCollection from './CollectionFS/FSCollection';
import FSCollectionImagesPreloader from './CollectionFS/FSCollectionImagesPreloader';
import User from './user/User';

@@ -28,2 +31,3 @@ import Accounts from './user/Accounts';

MeteorComplexListView: MeteorComplexListView,
FSCollectionImagesPreloader: FSCollectionImagesPreloader,
collection: collection,

@@ -117,3 +121,3 @@ FSCollection: FSCollection,

Data.ddp.on("ready", message => {
/*
for(var i in Data.subscriptions) {

@@ -123,3 +127,3 @@ const sub = Data.subscriptions[i];

}
*/
});

@@ -126,0 +130,0 @@

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc