
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
react-native-release-profiler
Advanced tools
Finally a reliable way to profile our apps. No more false-positives or findings issues that are only present in debug build. In Debug builds (even when you use release bundle) a lot of things can take much more time than it actually takes on production. For instance garbage collection or JSI calls. Because of that every thing we find slow using hermes profiler has to be verified using release build. With this library you can run hermes profiler using release builds which simplifies the whole process. Additionally you can use the library on production to let the most challening users send you performance profiles.
If have any problems with performance feel free to reach out to us at hello@margelo.io.
npm install react-native-release-profiler
or
yarn add react-native-release-profiler
yarn add react-native-release-profilerimport { startProfiling } from 'react-native-release-profiler';
startProfiling()
import { stopProfiling } from 'react-native-release-profiler';
stopProfiling(true)
npx react-native-release-profiler --fromDownload --appId [your appId]yarn add react-native-release-profilerimport { startProfiling } from 'react-native-release-profiler';
startProfiling()
import { stopProfiling } from 'react-native-release-profiler';
const path = stopProfiling(true)
import Share from 'react-native-share';
const path = await stopProfiling(true)
const actualPath = `file://${path}`;
Share.open({
url: actualPath
})
.then((res) => {
console.log(res);
})
.catch((err) => {
err && console.log(err);
});
npx react-native-release-profiler --local <path to profile>startProfiling() - synchronously starts hermes profiler
stopProfiling(saveInDownloadsDirectory: boolean): Promise<string> - stops profiling and saves file in cache or downloads directory.
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library
FAQs
A fast and simple library to passively profile JS/Hermes performance in production and release builds.
The npm package react-native-release-profiler receives a total of 193,068 weekly downloads. As such, react-native-release-profiler popularity was classified as popular.
We found that react-native-release-profiler demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.