Socket
Socket
Sign inDemoInstall

profiler-sourcemap-injector

Package Overview
Dependencies
1
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    profiler-sourcemap-injector

Injects sourcemaps into .cpuprofile files


Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
1
Install size
246 kB
Created
Weekly downloads
 

Readme

Source

Profiler sourcemap injector

This package injects source map files into .cpuprofile files generated by Chrome DevTools.

Installation

npm install profiler-sourcemap-injector

or

yarn add profiler-sourcemap-injector

Usage

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
});

.cpuprofile reading

You can specify JSON-parsed .cpuprofile object instead of file path.

Path resolution

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.

Source map reading

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.

Usage outside of NodeJS environment

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.

License

MIT

Contributions

PRs are very welcome!

FAQs

Last updated on 20 Dec 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc