Socket
Socket
Sign inDemoInstall

istanbul-lib-source-maps

Package Overview
Dependencies
6
Maintainers
4
Versions
40
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    istanbul-lib-source-maps

Source maps support for istanbul


Version published
Weekly downloads
25M
increased by0.09%
Maintainers
4
Install size
379 kB
Created
Weekly downloads
 

Package description

What is istanbul-lib-source-maps?

The istanbul-lib-source-maps package is used for handling source maps in the context of the Istanbul code coverage tool. It allows for the generation, manipulation, and consumption of source maps, which are files that map from the transformed source to the original source, enabling the accurate reporting of code coverage for projects that use transpilers or minifiers.

What are istanbul-lib-source-maps's main functionalities?

Source Map Consumption

This feature allows for the consumption of source maps by registering them with a source map store. This is useful for tools that need to map coverage information back to the original source files.

const sourceMaps = require('istanbul-lib-source-maps');
const mapStore = sourceMaps.createSourceMapStore();
mapStore.registerURL('compiled.js', 'compiled.js.map');

Source Map Generation

This feature enables the generation of source maps. It's particularly useful for developers who are compiling or transforming their code and need to produce source maps for accurate code coverage reporting.

const {SourceMapGenerator} = require('istanbul-lib-source-maps');
let generator = new SourceMapGenerator({file: 'output.js'});
generator.addMapping({
  generated: {line: 1, column: 0},
  source: 'input.js',
  original: {line: 1, column: 0}
});
let map = generator.toString();

Applying Source Maps to Coverage Data

This feature involves applying source maps to coverage data to remap coverage reports back to the original source code. This is crucial for accurate coverage reporting in projects that use transpilation or other code transformations.

const sourceMaps = require('istanbul-lib-source-maps');
const mapStore = sourceMaps.createSourceMapStore();
mapStore.registerURL('compiled.js', 'compiled.js.map');
const transformedCoverage = mapStore.transformCoverage(mapStore.loadCoverage(coverageObject));

Other packages similar to istanbul-lib-source-maps

Readme

Source

istanbul-lib-source-maps

Build Status

Source map support for istanbuljs.

Debugging

istanbul-lib-source-maps uses the debug module. Run your application with the environment variable DEBUG=istanbuljs, to receive debug output.

Keywords

FAQs

Last updated on 26 Feb 2024

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