Skip to content

Commit af1364b

Browse files
author
Nathaniel Dsouza
authoredJun 8, 2021
Merge pull request #64 from TheRealNate/dev
Merge changes from dev into master
2 parents 6de5e43 + 759dea5 commit af1364b

File tree

13 files changed

+4313
-27
lines changed

13 files changed

+4313
-27
lines changed
 

‎README.md

+14
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,20 @@ For React Native <0.60.0 use [react-native-meteor](https://github.com/inProgress
8787
- Mixins (`connectMeteor`) have been removed
8888
- `composeWithTracker` has been removed
8989

90+
# Using on Web
91+
While this package was designed with React Native in mind, it is also capable of running on web (using `react-dom`). This can be useful if you need a light-weight Meteor implementation, if you want to create a client app separate from your server codebase, etc. The only change required is providing an AsyncStorage implementation. Here is a simple example:
92+
93+
````
94+
const AsyncStorage = {
95+
setItem:async (key, value) => window.localStorage.setItem(key, value),
96+
getItem:async (key) => window.localStorage.getItem(key)
97+
removeItem:async (key) => window.localStorage.removeItem(key)
98+
}
99+
100+
Meteor.connect("wss://.../websock", {AsyncStorage});
101+
102+
````
103+
90104
# Changelog
91105
The [GitHub Releases Tab](https://github.com/TheRealNate/meteor-react-native/releases) includes a full changelog
92106

‎SECURITY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
| Version | Supported |
66
| ------- | ------------------ |
7-
| 2.0.x | :white_check_mark: |
7+
| >=2.0.0 | :white_check_mark: |
88

99
## Reporting a Vulnerability
1010

‎companion-packages/meteorrn-local/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ const Local = {
9494
};
9595

9696

97-
LocalCol.insert = LocalCol.__insert;
98-
LocalCol.update = LocalCol.__update;
99-
LocalCol.remove = LocalCol.__remove;
97+
LocalCol.__insert = LocalCol.insert;
98+
LocalCol.__update = LocalCol.update;
99+
LocalCol.__remove = LocalCol.remove;
100100

101101
LocalCol.insert = (...args) => {
102102
LocalCol.__insert(...args);

‎companion-packages/meteorrn-local/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@meteorrn/local",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Store data locally",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)