I don't know if there could be changes in your webpack.config file that could change the scope or provide var for access through the global scope, but one quick way would be to simply use
global.Perf = require('react-addons-perf');
This should give you access through the console.
But it must be said that it may not be intended to expose global global variables to global variables in requireJS
And maybe try finding a way to run Perf.start () and Perf.stop () from your code, not the console!
source share