Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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,484,315 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 2 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.