0.0.6 • Published 6 years ago

react-stats-zavatta v0.0.6

Weekly downloads
22
License
-
Repository
github
Last release
6 years ago

React-Stats

React Performance Monitor

Inspired by https://github.com/mrdoob/stats.js

Screenshots

FPS

Usage

import React, { Component } from 'react';
import { render } from 'react-dom';
import FPSStats from 'react-stats');

const __DEV__ = true;

const Application = () => {
  return (
      <div>
        <FPSStats isActive={__DEV__} /> // True by default
      </div>
  );
};

render(
  <Application />,
  document.body
);

Optional Props

By default, the meter is fixed positioned in the bottom right. You can pass the optional props top, right, bottom & left to overrride that positioning. bottom & right have values by default, so pass 'auto' as their values if you want to use left or top values.