Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
remote-redux-devtools
Advanced tools
Use Redux DevTools remotely for React Native, hybrid, desktop and server side Redux apps.
npm install --save-dev remote-redux-devtools
Just add our store enhancer to your store:
store/configureStore.js
import { createStore, applyMiddleware, compose } from 'redux';
import thunk from 'redux-thunk';
import devTools from 'remote-redux-devtools';
import reducer from '../reducers';
export default function configureStore(initialState) {
const enhancer = compose(
applyMiddleware(thunk),
devTools()
);
// Note: passing enhancer as last argument requires redux@>=3.1.0
const store = createStore(reducer, initialState, enhancer);
// If you have other enhancers & middlewares
// update the store after creating / changing to allow devTools to use them
devTools.updateStore(store);
return store;
}
In order not to allow it in production by default, the enhancer will have effect only when process.env.NODE_ENV === 'development'
. In case you don't set NODE_ENV
or want to use it in production, set realtime
parameter to true
:
const enhancer = compose(
applyMiddleware(thunk),
devTools({ realtime: true })
);
Use one of our monitor apps to inspect and dispatch actions:
Cmd+Ctrl+Arrow up
) to open remote monitoring.remotedev-server
, remotedev-app
and even React DevTools.Use remotedev-app to create your own monitor app.
In order to make it simple to use, by default, the module and the monitor app communicate via remotedev.io server. Use remotedev-server cli to run it locally in order to make the connection faster and not to require an internet connection.
You can import it in your server.js
script and start remotedev server together with your development server:
var remotedev = require('remotedev-server');
remotedev({ hostname: 'localhost', port: 8000 });
See remotedev-server repository for more details.
For React Native you can use react-native-debugger or remote-redux-devtools-on-debugger, which already include remotedev-server
.
Name | Description |
---|---|
name | String representing the instance name to be shown on the remote monitor. |
realtime | Boolean specifies whether to allow remote monitoring. By default is process.env.NODE_ENV === 'development' . |
hostname | String used to specify host for remotedev-server . If port is specified, default value is localhost . |
port | Number used to specify host's port for remotedev-server . |
secure | Boolean specifies whether to use https protocol for remotedev-server . |
maxAge | Number of maximum allowed actions to be stored on the history tree, the oldest actions are removed once maxAge is reached. Default is 30 . |
filters | Map of arrays named whitelist or blacklist to filter action types. See the example bellow. |
actionSanitizer | Function which takes action object and id number as arguments, and should return action object back. See the example bellow. |
stateSanitizer | Function which takes state object and index as arguments, and should return state object back. See the example bellow. |
startOn | String or Array of strings indicating an action or a list of actions, which should start remote monitoring (when realtime is false ). |
stopOn | String or Array of strings indicating an action or a list of actions, which should stop remote monitoring. |
sendOn | String or Array of strings indicating an action or a list of actions, which should trigger sending the history to the monitor (without starting it). Note: when using it, add a fetch polyfill if needed. |
sendOnError | Numeric code: 0 - disabled (default), 1 - send all uncaught exception messages, 2 - send only reducers error messages. |
sendTo | String url of the monitor to send the history when sendOn is triggered. By default is ${secure ? 'https' : 'http'}://${hostname}:${port} . |
actionCreators | Array or Object of action creators to dispatch remotely. See the example. |
shouldHotReload | Boolean - if set to false , will not recompute the states on hot reloading (or on replacing the reducers). Default to true . |
id | String to identify the instance when sending the history triggered by sendOn . You can use, for example, user id here, to know who sent the data. |
All parameters are optional. You have to provide at least port
property to use localhost
instead of remotedev.io
server.
Example:
export default function configureStore(initialState) {
// Note: passing enhancer as last argument requires redux@>=3.1.0
const store = createStore(
rootReducer,
initialState,
devTools({
name: 'Android app', realtime: true,
hostname: 'localhost', port: 8000,
maxAge: 30, filters: { blacklist: ['EFFECT_RESOLVED'] },
actionSanitizer: (action) => (
action.type === 'FILE_DOWNLOAD_SUCCESS' && action.data ?
{ ...action, data: '<<LONG_BLOB>>' } : action
),
stateSanitizer: (state) => state.data ? { ...state, data: '<<LONG_BLOB>>' } : state
})
);
// If you have other enhancers & middlewares
// update the store after creating / changing to allow devTools to use them
devTools.updateStore(store);
return store;
}
MIT
FAQs
Relay Redux actions to remote Redux DevTools.
The npm package remote-redux-devtools receives a total of 18,211 weekly downloads. As such, remote-redux-devtools popularity was classified as popular.
We found that remote-redux-devtools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.