
Research
/Security News
60 Malicious Ruby Gems Used in Targeted Credential Theft Campaign
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Monitoring flux app's actions along with states to a remote monitor. Meant to be used even in production with any flux architecture for web, universal, React Native, hybrid, desktop and server side apps.
npm install --save-dev remotedev
<script src="https://unpkg.com/remotedev/dist/remotedev.min.js"></script>
import { connectViaExtension, extractState } from 'remotedev';
// It will try to use Redux DevTools extension first if installed
// In case you want only remote monitoring use `connect`:
// import { connect, extractState } from 'remotedev';
// Connect to the monitor
remotedev = connectViaExtension();
// Subscribe to change state (if need more than just logging)
remotedev.subscribe(message => {
// Helper when only time travelling needed
const state = extractState(message);
this.setState(state);
});
// Send changes to the remote monitor
remotedev.send(action, state);
See the examples for different flux architectures.
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 remotedev-rn-debugger, which already include remotedev-server
.
MIT
FAQs
Remote debugging for any flux implementation.
The npm package remotedev receives a total of 3,489 weekly downloads. As such, remotedev popularity was classified as popular.
We found that remotedev 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.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.