Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@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 jsnpr from '@speedsters/react';
const connectionOptions = {
name: 'My Application name',
};
jsnpr.connect(connectionOptions);
...
import { AppRegistry, Platform} from 'react-native';
import jsnpr 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',
}),
};
jsnpr.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 jsnpr from '@speedsters/react';
export default class App extends React.Component<Props, State> {
constructor(props) {
super(props);
/*
* Add this line to the constructor
* and you're ready to GO!
*/
const options = {
excludes: {
// Exclude this method.
handlePushViewButton: true,
},
/*
* 16 frame per second is the best performance you
* can get for an react-native app
*/
milliseconds: 16;
};
jsnpr.component(this, options);
/*
* Because this method is been bind on the constructor
* it will be measure by the Jsnpr.component.
*
* NOTE: Arrow function will not be measured.
*/
this.handleChangeViewButton = this.handleChangeViewButton.bind(this);
this.handlePushViewButton = this.handlePushViewButton.bind(this);
}
handleChangeViewButton() {
...
}
handlePushViewButton() {
...
}
// 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
The npm package @speedsters/react receives a total of 5 weekly downloads. As such, @speedsters/react popularity was classified as not popular.
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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.