Gathering detailed insights and metrics for remotedev-rn-debugger
Gathering detailed insights and metrics for remotedev-rn-debugger
Gathering detailed insights and metrics for remotedev-rn-debugger
Gathering detailed insights and metrics for remotedev-rn-debugger
Injecting remotedev-app monitor into official Remote debugger of React Native. (formerly remote-redux-devtools-on-debugger)
npm install remotedev-rn-debugger
Typescript
Module System
Node Version
NPM Version
JavaScript (95.95%)
CSS (4.05%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
244 Stars
171 Commits
27 Forks
5 Watchers
2 Branches
4 Contributors
Updated on Jan 27, 2025
Latest Version
0.8.4
Package Id
remotedev-rn-debugger@0.8.4
Unpacked Size
1.75 MB
Size
516.10 kB
File Count
9
NPM Version
6.4.1
Node Version
10.15.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
4
1
27
Injecting remotedev-app monitor into official Remote debugger of React Native. (formerly remote-redux-devtools-on-debugger
)
We can use it with:
NOTE We will stop publish the old name remote-redux-devtools-on-debugger
on next major version v0.9
.
1$ npm install --save-dev remotedev-rn-debugger
Add command to your project's package.json:
"scripts": {
"postinstall": "remotedev-debugger [options]"
}
It will be run after npm install
. (You can run npm run postinstall
first)
The ./node_modules/react-native/local-cli/server/util/debugger.html
will be replaced.
Name | Description |
---|---|
hostname | The remotedev-server hostname. (default: localhost if port is set) |
port | The remotedev-server port. (default: 8000 if runserver or hostname is set) |
runserver | Start the remotedev-server with hostname , port option on local. (default: false ) |
secure | Use https protocol for hostname . If you're use runserver or injectserver option, you can provide key , cert , passphrase options for remotedev-server . (default: false ) |
injectserver | Inject remotedev-server with hostname , port option to node_modules/react-native/local-cli/server/server.js , then you can start ReactNative local server and RemoteDev local server with one command ($ npm start ). (default: false ) |
injectdebugger | Inject remotedev-app with hostname , port option to node_modules/react-native/local-cli/server/util/debugger.html . (default: true ) |
macos | Use react-native-macos module name instead of react-native. (default: false ) |
revert | Revert all injection. (default: false ) |
wsengine | The web socket engine used in remotedev-server: ws or uws . If not set, remotedev-server default value is used. (default: undefined ) |
If you not set hostname
or port
or runserver
or injectserver
, it will apply default options.
You can ignore this guide if you used default options.
1$ npm install --save-dev remote-redux-devtools 2$ npm install --save-dev remotedev-rn-debugger
Add command to your project's package.json:
"scripts": {
"postinstall": "remotedev-debugger --hostname localhost --port 5678 --injectserver"
}
It will be run after npm install
. (You can run npm run postinstall
first)
If you debug on real device, you should use LAN IP as a hostname
.
1import { Platform } from 'react-native'; 2import { createStore, applyMiddleware, compose } from 'redux'; 3import thunk from 'redux-thunk'; 4import devTools from 'remote-redux-devtools'; 5import reducer from '../reducers'; 6 7export default function configureStore(initialState) { 8 const enhancer = compose( 9 applyMiddleware(thunk), 10 devTools({ 11 name: Platform.OS, 12 hostname: 'localhost', 13 port: 5678 14 }) 15 ); 16 return createStore(reducer, initialState, enhancer); 17}
You can reference this example.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 2/30 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
140 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More