├── .babelrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── companion-package-request.md │ └── core-feature-request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── codeql-analysis.yml │ ├── manual.yml │ ├── node.js.yml │ └── stale.yml ├── .gitignore ├── .jshintrc ├── .mocharc.js ├── .npmignore ├── .nycrc.json ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── companion-packages ├── meteorrn-local │ ├── README.md │ ├── index.js │ └── package.json └── meteorrn-ndev-mfa │ ├── README.md │ ├── index.js │ ├── method-names.js │ └── package.json ├── docs ├── AccountsPassword.html ├── Collection.html ├── Cursor.html ├── DDP.html ├── Data.html ├── Meteor.html ├── Mongo.html ├── MongoID.ObjectID.html ├── Tracker.Computation.html ├── Tracker.Dependency.html ├── Tracker.html ├── User.html ├── api.md ├── fonts │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold-webfont.svg │ ├── OpenSans-Bold-webfont.woff │ ├── OpenSans-BoldItalic-webfont.eot │ ├── OpenSans-BoldItalic-webfont.svg │ ├── OpenSans-BoldItalic-webfont.woff │ ├── OpenSans-Italic-webfont.eot │ ├── OpenSans-Italic-webfont.svg │ ├── OpenSans-Italic-webfont.woff │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-LightItalic-webfont.eot │ ├── OpenSans-LightItalic-webfont.svg │ ├── OpenSans-LightItalic-webfont.woff │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ └── OpenSans-Regular-webfont.woff ├── global.html ├── index.html ├── installation.md ├── lib_Random.js.html ├── lib_ddp.js.html ├── lib_mongo-id.js.html ├── lib_queue.js.html ├── lib_sha256.js.html ├── lib_socket.js.html ├── lib_utils.js.html ├── module.html#.exports ├── scripts │ ├── linenumber.js │ └── prettify │ │ ├── Apache-License-2.0.txt │ │ ├── lang-css.js │ │ └── prettify.js ├── src_Call.js.html ├── src_Collection.js.html ├── src_Data.js.html ├── src_Meteor.js.html ├── src_Mongo.js.html ├── src_ReactiveDict.js.html ├── src_Tracker.js.html ├── src_components_useTracker.js.html ├── src_components_withTracker.js.html ├── src_user_Accounts.js.html ├── src_user_User.js.html └── styles │ ├── jsdoc-default.css │ ├── prettify-jsdoc.css │ └── prettify-tomorrow.css ├── examples └── Login.jsx ├── helpers └── reactNativeBindings.js ├── jsdoc.conf.json ├── lib ├── Random.js ├── ddp.js ├── mongo-id.js ├── queue.js ├── sha256.js ├── socket.js └── utils.js ├── logo.svg ├── package.json ├── src ├── Call.js ├── Collection.js ├── Data.js ├── Meteor.d.ts ├── Meteor.js ├── Mongo.js ├── ReactiveDict.js ├── Tracker.js ├── components │ ├── useTracker.js │ └── withTracker.js ├── index.js └── user │ ├── Accounts.js │ └── User.js └── test ├── hooks └── mockServer.js ├── lib ├── ddp.tests.js ├── mongo-id.tests.js ├── queue.tests.js ├── random.tests.js ├── socket.tests.js └── utils.tests.js ├── src ├── Collection.tests.js ├── Meteor.tests.js ├── ReactiveDict.tests.js └── Tracker.tests.js └── testHelpers.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/companion-package-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.github/ISSUE_TEMPLATE/companion-package-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/core-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.github/ISSUE_TEMPLATE/core-feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esnext": true 3 | } 4 | -------------------------------------------------------------------------------- /.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.mocharc.js -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.npmignore -------------------------------------------------------------------------------- /.nycrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@istanbuljs/nyc-config-babel" 3 | } 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/SECURITY.md -------------------------------------------------------------------------------- /companion-packages/meteorrn-local/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/companion-packages/meteorrn-local/README.md -------------------------------------------------------------------------------- /companion-packages/meteorrn-local/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/companion-packages/meteorrn-local/index.js -------------------------------------------------------------------------------- /companion-packages/meteorrn-local/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/companion-packages/meteorrn-local/package.json -------------------------------------------------------------------------------- /companion-packages/meteorrn-ndev-mfa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/companion-packages/meteorrn-ndev-mfa/README.md -------------------------------------------------------------------------------- /companion-packages/meteorrn-ndev-mfa/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/companion-packages/meteorrn-ndev-mfa/index.js -------------------------------------------------------------------------------- /companion-packages/meteorrn-ndev-mfa/method-names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/companion-packages/meteorrn-ndev-mfa/method-names.js -------------------------------------------------------------------------------- /companion-packages/meteorrn-ndev-mfa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/companion-packages/meteorrn-ndev-mfa/package.json -------------------------------------------------------------------------------- /docs/AccountsPassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/AccountsPassword.html -------------------------------------------------------------------------------- /docs/Collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/Collection.html -------------------------------------------------------------------------------- /docs/Cursor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/Cursor.html -------------------------------------------------------------------------------- /docs/DDP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/DDP.html -------------------------------------------------------------------------------- /docs/Data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/Data.html -------------------------------------------------------------------------------- /docs/Meteor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/Meteor.html -------------------------------------------------------------------------------- /docs/Mongo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/Mongo.html -------------------------------------------------------------------------------- /docs/MongoID.ObjectID.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/MongoID.ObjectID.html -------------------------------------------------------------------------------- /docs/Tracker.Computation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/Tracker.Computation.html -------------------------------------------------------------------------------- /docs/Tracker.Dependency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/Tracker.Dependency.html -------------------------------------------------------------------------------- /docs/Tracker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/Tracker.html -------------------------------------------------------------------------------- /docs/User.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/User.html -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-LightItalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /docs/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/global.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/lib_Random.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/lib_Random.js.html -------------------------------------------------------------------------------- /docs/lib_ddp.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/lib_ddp.js.html -------------------------------------------------------------------------------- /docs/lib_mongo-id.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/lib_mongo-id.js.html -------------------------------------------------------------------------------- /docs/lib_queue.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/lib_queue.js.html -------------------------------------------------------------------------------- /docs/lib_sha256.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/lib_sha256.js.html -------------------------------------------------------------------------------- /docs/lib_socket.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/lib_socket.js.html -------------------------------------------------------------------------------- /docs/lib_utils.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/lib_utils.js.html -------------------------------------------------------------------------------- /docs/module.html#.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/module.html#.exports -------------------------------------------------------------------------------- /docs/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/scripts/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/scripts/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /docs/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /docs/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /docs/src_Call.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/src_Call.js.html -------------------------------------------------------------------------------- /docs/src_Collection.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/src_Collection.js.html -------------------------------------------------------------------------------- /docs/src_Data.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/src_Data.js.html -------------------------------------------------------------------------------- /docs/src_Meteor.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/src_Meteor.js.html -------------------------------------------------------------------------------- /docs/src_Mongo.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/src_Mongo.js.html -------------------------------------------------------------------------------- /docs/src_ReactiveDict.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/src_ReactiveDict.js.html -------------------------------------------------------------------------------- /docs/src_Tracker.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/src_Tracker.js.html -------------------------------------------------------------------------------- /docs/src_components_useTracker.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/src_components_useTracker.js.html -------------------------------------------------------------------------------- /docs/src_components_withTracker.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/src_components_withTracker.js.html -------------------------------------------------------------------------------- /docs/src_user_Accounts.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/src_user_Accounts.js.html -------------------------------------------------------------------------------- /docs/src_user_User.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/src_user_User.js.html -------------------------------------------------------------------------------- /docs/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/styles/jsdoc-default.css -------------------------------------------------------------------------------- /docs/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /docs/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/docs/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /examples/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/examples/Login.jsx -------------------------------------------------------------------------------- /helpers/reactNativeBindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/helpers/reactNativeBindings.js -------------------------------------------------------------------------------- /jsdoc.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/jsdoc.conf.json -------------------------------------------------------------------------------- /lib/Random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/lib/Random.js -------------------------------------------------------------------------------- /lib/ddp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/lib/ddp.js -------------------------------------------------------------------------------- /lib/mongo-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/lib/mongo-id.js -------------------------------------------------------------------------------- /lib/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/lib/queue.js -------------------------------------------------------------------------------- /lib/sha256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/lib/sha256.js -------------------------------------------------------------------------------- /lib/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/lib/socket.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/lib/utils.js -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/package.json -------------------------------------------------------------------------------- /src/Call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/src/Call.js -------------------------------------------------------------------------------- /src/Collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/src/Collection.js -------------------------------------------------------------------------------- /src/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/src/Data.js -------------------------------------------------------------------------------- /src/Meteor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/src/Meteor.d.ts -------------------------------------------------------------------------------- /src/Meteor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/src/Meteor.js -------------------------------------------------------------------------------- /src/Mongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/src/Mongo.js -------------------------------------------------------------------------------- /src/ReactiveDict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/src/ReactiveDict.js -------------------------------------------------------------------------------- /src/Tracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/src/Tracker.js -------------------------------------------------------------------------------- /src/components/useTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/src/components/useTracker.js -------------------------------------------------------------------------------- /src/components/withTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/src/components/withTracker.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/src/index.js -------------------------------------------------------------------------------- /src/user/Accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/src/user/Accounts.js -------------------------------------------------------------------------------- /src/user/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/src/user/User.js -------------------------------------------------------------------------------- /test/hooks/mockServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/test/hooks/mockServer.js -------------------------------------------------------------------------------- /test/lib/ddp.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/test/lib/ddp.tests.js -------------------------------------------------------------------------------- /test/lib/mongo-id.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/test/lib/mongo-id.tests.js -------------------------------------------------------------------------------- /test/lib/queue.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/test/lib/queue.tests.js -------------------------------------------------------------------------------- /test/lib/random.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/test/lib/random.tests.js -------------------------------------------------------------------------------- /test/lib/socket.tests.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/lib/utils.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/test/lib/utils.tests.js -------------------------------------------------------------------------------- /test/src/Collection.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/test/src/Collection.tests.js -------------------------------------------------------------------------------- /test/src/Meteor.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/test/src/Meteor.tests.js -------------------------------------------------------------------------------- /test/src/ReactiveDict.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/test/src/ReactiveDict.tests.js -------------------------------------------------------------------------------- /test/src/Tracker.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/test/src/Tracker.tests.js -------------------------------------------------------------------------------- /test/testHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteorrn/meteor-react-native/HEAD/test/testHelpers.js --------------------------------------------------------------------------------