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-beta1 to 1.0.0-beta2

4

docs/Install.md

@@ -18,7 +18,7 @@ # Installing decorators

Looking for your help. The RN 0.20.0 might be working, please let me know ;)
Looking for your help. The RN 0.20.0 solution might be working, please let me know ;)
## With RN <0.16.0 (Babel 5)
Use a .babecrc file at the root of your projet that contains :
Use a .babelrc file at the root of your projet that contains :

@@ -25,0 +25,0 @@ ```json

{
"name": "react-native-meteor",
"version": "1.0.0-beta1",
"version": "1.0.0-beta2",
"description": "DDP React-native Client",

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

"minimongo-cache": "0.0.48",
"react-mixin": "^3.0.3",
"trackr": "^2.0.2"
}
}

@@ -22,3 +22,3 @@ [![GitHub version](https://badge.fury.io/gh/inProgress-team%2Freact-native-meteor.svg)](https://badge.fury.io/gh/inProgress-team%2Freact-native-meteor)

* be fully compatible with react-native and help react-native developers.
* **Use the EXACT SAME METHODS as [Meteor documentation](http://docs.meteor.com/) used with React.**
* **to match with [Meteor documentation](http://docs.meteor.com/) used with React.**

@@ -36,4 +36,3 @@ ## Install

import { View, Text, Component } from 'react-native';
import Meteor, { MeteorMixin } from 'react-native-meteor';
import reactMixin from 'react-mixin';
import Meteor, { connectMeteor } from 'react-native-meteor';

@@ -47,3 +46,3 @@ /*

}
reactMixin(Todos.prototype, MeteorMixin);
connectMeteor(Todos);
export default Todos;

@@ -53,3 +52,3 @@

@reactMixin.decorate(MeteorMixin)
@connectMeteor
export default class App extends Component {

@@ -118,3 +117,3 @@ componentWillMount() {

* [Meteor.call](http://docs.meteor.com/#/full/meteor_call)
* [Meteor.loginWithPassword](http://docs.meteor.com/#/full/meteor_loginwithpassword) (Please note that user signin is persisted - like in Meteor Web applications - thanks to React Native AsyncStorage.)
* [Meteor.loginWithPassword](http://docs.meteor.com/#/full/meteor_loginwithpassword) (Please note that user is auto-resigned in - like in Meteor Web applications - thanks to React Native AsyncStorage.)
* [Meteor.logout](http://docs.meteor.com/#/full/meteor_logout)

@@ -10,3 +10,5 @@ import reactMixin from 'react-mixin';

module.exports = {
MeteorMixin: Mixin,
connectMeteor(reactClass) {
return reactMixin.onClass(reactClass, Mixin);
},
collection(name) {

@@ -13,0 +15,0 @@ return {

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