
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
nativescript-redux-devtools
Advanced tools
Setting up in existing {N} app: ``` npm i nativescript-redux-devtools --save ```
Setting up in existing {N} app:
npm i nativescript-redux-devtools --save
Add the devTools enchanser to your store:
var isAndroid = require("platform").isAndroid;
var devTools = require('remote-redux-devtools').default;
// For Android emulator: 10.0.2.2, For Genymotion 10.0.3.2.
var hostname = isAndroid ? "10.0.3.2" : "localhost";
var store = createStore(counter, devTools({
hostname,
port: 8000,
realtime: true
}))
The hostname can be localhost for iOS emulators or for Android 10.0.2.2 (10.0.3.2 for genymotion).
For real devices connected over USB you can use adb reverse for Android 21+, or your computer's IP over WiFi.
For a test drive you can install the remote-server:
npm i remotedev-server --save-dev
And start it using npm script, add this in the package.json:
"scripts": {
"remotedev": "remotedev --hostname=localhost --port=8000"
}
Run it with:
npm run remotedev
Your app should connect to that server. Further you can install the RemoteDev Chrome app and use it to manage your {N} app.
FAQs
Redux Devtools for NativeScript
The npm package nativescript-redux-devtools receives a total of 0 weekly downloads. As such, nativescript-redux-devtools popularity was classified as not popular.
We found that nativescript-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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.