1.4.0 • Published 3 years ago

remoteredux-standalone v1.4.0

Weekly downloads
9
License
MIT
Repository
github
Last release
3 years ago

remoteredux-standalone

A standalone monitor, debugging redux even without internet. Bridge for communicating with an application remotely via Remote Redux DevTools. Based on remotedev-server.

remoteredux-standalone

Installation

Install the package globally just run:
$ npm install -g remoteredux-standalone
for macOS/linux
$ sudo npm install -g remoteredux-standalone --unsafe-perm=true --allow-root

Or install in package.json

$ npm install remoteredux-standalone --save-dev

Usage

Run remoteredux globally from the terminal to launch the standalone app:
$ remoteredux
Run remoteredux by npm script (if you didn't install globally):

Add in your app's package.json:

"scripts": {
  "remoteredux": "remoteredux --hostname=localhost --port=8000"
}

Then run remoteredux from the terminal

$ npm run remoteredux

Or run in your server.js script for starting a development server:

var remoteredux = require('remoteredux-standalone');
remoteredux({ hostname: 'localhost', port: 8000 });

This server.js will start remoteredux together with your dev server without electron interface, you will have to use your own browser go into your host address.

Connection settings

Set hostname and port to the values you want. hostname by default is localhost and port is 8000.

To use WSS, set protocol argument to https and provide key, cert and passphrase arguments.

$ remoteredux --hostname=localhost --port=8000

Inject to React Native local server

Add in your React Native app's package.json:
"scripts": {
  "remoteredux": "remoteredux --hostname=localhost --port=8000 --injectserver=reactnative"
}

The injectserver value can be reactnative or macos (react-native-macos), it used reactnative by default.

Then, we can start React Native server and RemoteDev server with one command (npm start).

Revert the injection

Add in your React Native app's package.json:

"scripts": {
  "remoteredux-revert": "remoteredux --revert=reactnative"
}

Connect from Android device or emulator

Note that if you're using injectserver argument explained above, this step is not necessary.

If you're running an Android 5.0+ device connected via USB or an Android emulator, use adb command line tool to setup port forwarding from the device to your computer:

adb reverse tcp:8000 tcp:8000

If you're still use Android 4.0, you should use 10.0.2.2 (Genymotion: 10.0.3.2) instead of localhost in remote-redux-devtools or remotedev.

Save reports and logs

You can store reports via redux-remotedev and get them replicated with Redux DevTools extension or Remote Redux DevTools. You can get action history right in the extension just by clicking the link from a report.

Remotedev server is database agnostic. By default everything is stored in the memory, but you can persist data by specifying one of the jsData adapters above for adapter argument. Also you can add an dbOptions argument for database configuration. If not provided the default options will be used (for some adapters, like sql, it's required). You have to install the required adapter's npm package.

StorageadapterdbOptions argument example (optional)install
Firebasefirebase{ basePath: 'https://my-app.firebase.io' }npm install --save js-data-firebase
HTTPhttp{ basePath: 'https://my-rest-server/api' }npm install --save js-data-http
LevelUplevelup'./db' (the levelup "db" object will be available at "adapter.db")npm install --save js-data-levelup
MongoDBmongodb{ name: 'user', idAttribute: '_id', table: 'users' }npm install --save js-data-mongodb
MySQLsql{ client: 'mysql', connection: { host: '123.45.67.890', user: 'ubuntu', password: 'welcome1234', database: 'db1' }npm install --save js-data-sql
Postgressql{ client: 'pg', connection: { host: '123.45.67.890', user: 'ubuntu', password: 'welcome1234', database: 'db1' }npm install --save js-data-sql
RedisredisSee the configurable options for node_redisnpm install --save js-data-redis
RethinkDBrethinkdb{ host: '123.456.68.987', db: 'my_db' }npm install --save rethinkdbdash js-data-rethinkdb
SQLite3sql{ client: 'sqlite3', connection: { host: '123.45.67.890', user: 'ubuntu', password: 'welcome1234', database: 'db1' }npm install --save js-data-sql

Implement a custom adapter for JSData.

License

MIT

1.4.0

3 years ago

1.3.3

6 years ago

1.3.2

6 years ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.20

6 years ago

1.2.19

6 years ago

1.2.18

6 years ago

1.2.17

6 years ago

1.2.16

6 years ago

1.2.15

6 years ago

1.2.14

6 years ago

1.2.13

6 years ago

1.2.12

6 years ago

1.2.11

6 years ago

1.2.10

6 years ago

1.2.9

6 years ago

1.2.8

6 years ago

1.2.7

6 years ago

1.2.6

6 years ago

1.2.5

6 years ago

1.2.4

6 years ago

1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago