
Research
/Security News
Toptalโs GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptalโs GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
metro-symbolicate
Advanced tools
๐ A tool to find the source location from JS bundles and stack traces.
The metro-symbolicate package is part of the Metro bundler (used by React Native) that provides functionality for symbolication. Symbolication is the process of converting machine code addresses back into human-readable source code locations (file names and line numbers). This is particularly useful for interpreting stack traces that are generated from minified or compiled code, making debugging much easier.
Symbolicating stack traces
This feature allows developers to pass a stack trace to the `symbolicateStackTrace` function, which returns a promise that resolves to a symbolicated stack trace. The symbolicated stack trace includes file names, line numbers, and even column numbers when available, making it easier to debug issues.
const symbolicateStackTrace = require('metro-symbolicate').symbolicateStackTrace;
symbolicateStackTrace(stackTrace).then(symbolicated => {
console.log(symbolicated);
});
The source-map package provides functionalities for generating and consuming source maps. While metro-symbolicate is specifically tailored for React Native and integrates with the Metro bundler, source-map is a more general tool that can be used with any JavaScript project to handle source maps for error reporting and debugging.
stacktrace-js is a library that provides stack trace parsing and symbolication capabilities. Unlike metro-symbolicate, which is designed to work within the React Native ecosystem, stacktrace-js can be used in any JavaScript environment, including browsers and Node.js, to help developers symbolicate and analyze stack traces.
FAQs
๐ A tool to find the source location from JS bundles and stack traces.
The npm package metro-symbolicate receives a total of 2,356,324 weekly downloads. As such, metro-symbolicate popularity was classified as popular.
We found that metro-symbolicate demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.ย It has 0 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.
Research
/Security News
Threat actors hijacked Toptalโs GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.