New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@speedsters/react

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@speedsters/react

A simple way of testing your react application performance

  • 0.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-28.57%
Maintainers
1
Weekly downloads
 
Created
Source

Speedsters

A simple way of tracking your react/react-native render/methods speed.

SETUP

In your main/root react file import @speedsters/react and initiate the connection.

React-js
...
import ReactDOM from 'react-dom';
import sreact from '@speedsters/react';

const connectionOptions = {
  name: 'My Application name',
};
sreact.connect(connectionOptions);

React-Native
...
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);
Tracking

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);

    /*
     * 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;
    };

    sreact.component(this, options);

    /*
     * Because this method is been bind on the constructor 
     * it will be measure by the sreact.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 = () => {
    ...
  };
}
THAT'S IT

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

Package last updated on 04 Nov 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc