
Security News
Feross on Risky Business Weekly Podcast: npm’s Ongoing Supply Chain Attacks
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
@speedsters/react
Advanced tools
A simple way of tracking your react/react-native render/methods speed.
In your main/root react file import @speedsters/react
and initiate the connection.
...
import ReactDOM from 'react-dom';
import sreact from '@speedsters/react';
const connectionOptions = {
name: 'My Application name',
};
sreact.connect(connectionOptions);
...
import { AppRegistry, Platform} from 'react-native';
import sreact from '@speedsters/react';
const connectionOptions = {
name: 'My Application name',
/*
* Since emulator on Android runs on it's own
* VM we need to change the default host name
* for the connection.
*
* NOTE:
* If you're using Expo may need to change to
* another host.
*/
host: Platform.select({
ios: 'localhost',
android: '10.0.2.2',
}),
};
sreact.connect(connectionOptions);
Once you've connected you're now able to track the performance of you react/react-native class
import React from 'react';
import sreact from '@speedsters/react';
export default class App extends React.Component<Props, State> {
constructor(props) {
super(props);
const options = {
excludes: {
// Exclude this method.
handlePushViewButton: true,
},
// specify the performance that you wanna this component to have
milliseconds: 16;
};
sreact.classComponent(this, options);
/*
* Because those methods are been bind in the constructor
* it will be measure by the sreact.classComponent.
*/
this.handleChangeViewButton = this.handleChangeViewButton.bind(this);
this.handlePushViewButton = this.handlePushViewButton.bind(this);
}
handleChangeViewButton() {
...
}
handlePushViewButton() {
...
}
// Arrow function will not be measured.
handleEditButton = () => {
...
};
}
And you're ready to rock! open the speedsters desktop application reload your react/react-native app and all your performance measurement will show there.
FAQs
A simple way of testing your react application performance
We found that @speedsters/react 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
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.