React-memory-stats

React Component that shows your app memory activity.

View project on GitHub

react-memory-stats

This plugin is based on Paul Irish's memory-stats.

image

Install

npm install react-memory-stats --save

Start Chrome with --enable-precise-memory-info

# Linux
google-chrome --enable-precise-memory-info --enable-memory-info

#MacOS
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --enable-precise-memory-info --enable-memory-info

Otherwise the results from performance.memory are bucketed and less useful.

Add the module to your react's dependencies

var MemoryStatsComponent = require( 'react-memory-stats' );
...
render: function()
{
  return ( <MemoryStatsComponent enabled={true}/> );
}

Contribute

npm install
npm run build