
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
profiler-sourcemap-injector
Advanced tools
This package injects source map files into .cpuprofile files generated by Chrome DevTools.
npm install profiler-sourcemap-injector
or
yarn add profiler-sourcemap-injector
import { injectSourceMaps } from 'profiler-sourcemap-injector';
const outputObject = await injectSourceMaps('path/to/profile.cpuprofile', 'path/to/output/profile.cpuprofile', {
sourceMapDir: 'path/to/source/maps', // Directory where source maps are located
sourceDir: 'path/to/source/files', // Optional path to source file directory
profileSourceRoot: 'root/of/profile/source/paths', // Optional root path of source paths in .cpuprofile file
log: (msg) => console.log(msg), // Optional logging function
transformSource: (path) => path, // Optional function to transform source paths
sourceMapProvider: (path) => null, // Optional function to provide source maps
});
You can specify JSON-parsed .cpuprofile object instead of file path.
If profileSourceRoot
is specified, the speicfied value will be removed from the start of each .cpuprofile path.
If sourceDir
is specified, the specified value will be appended to the start of each .cpuprofile path.
This is helpful if you want to forcefully resolve paths to use in e.g. VSCode
You can override that behavior by specifying transformSource
function. The function gets .cpuprofile path as an input, and outputs new path.
By default this package reads source maps from the sourceMapDir
, looking for files with the same name as .js, but with .map extension.
You can override that behavior by specifying sourceMapProvider
function. The function gets .cpuprofile path as an input, and outputs source map contents string.
To use this module outside of NodeJS you can override sourceMapProvider
function, provide profile object instead of .cpuprofile path, and specify null
to the output argument.
You can get resulting profile object from the return value of the function.
PRs are very welcome!
FAQs
Injects sourcemaps into .cpuprofile files
The npm package profiler-sourcemap-injector receives a total of 5 weekly downloads. As such, profiler-sourcemap-injector popularity was classified as not popular.
We found that profiler-sourcemap-injector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.