connectycube
Advanced tools
Comparing version 1.3.0 to 1.3.3
{ | ||
"name": "connectycube", | ||
"description": "ConnectyCube JavaScript SDK", | ||
"version": "1.3.0", | ||
"version": "1.3.3", | ||
"homepage": "https://connectycube.com/developers/#/Javascript/", | ||
@@ -6,0 +6,0 @@ "main": "src/cubeMain.js", |
@@ -31,3 +31,3 @@ # Overview | ||
## Node.js and NPM integration | ||
## Node.js/NPM, Native Script integration | ||
@@ -46,2 +46,26 @@ Simply install the package in a normal way: | ||
## React Native integration | ||
Simply install the package in a normal way: | ||
```bash | ||
npm install connectycube-reactnative --save | ||
``` | ||
Then do some pre-setup steps for the internal dependency - xmpp.js lib: | ||
```bash | ||
cd node_modules/connectycube-reactnative/xmpp.js | ||
make | ||
cd ../../../ | ||
cp -r node_modules/connectycube-reactnative/xmpp.js/node_modules/* node_modules/ | ||
``` | ||
and you're ready to go: | ||
```javascript | ||
import {ConnectyCube} from 'connectycube-reactnative'; | ||
var CB = new ConnectyCube(); | ||
``` | ||
# Supported platforms | ||
@@ -48,0 +72,0 @@ |
'use strict'; | ||
var config = { | ||
version: '1.2.1', | ||
version: '1.3.3', | ||
creds: { | ||
@@ -6,0 +6,0 @@ appId: '', |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1135339
83