Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 806 Bytes

README.md

File metadata and controls

42 lines (29 loc) · 806 Bytes

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