Socket
Socket
Sign inDemoInstall

metro-source-map

Package Overview
Dependencies
8
Maintainers
2
Versions
151
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    metro-source-map

🚇 Source map generator for Metro.


Version published
Weekly downloads
2.4M
increased by0.78%
Maintainers
2
Install size
4.82 MB
Created
Weekly downloads
 

Package description

What is metro-source-map?

The metro-source-map npm package is a component of the Metro bundler, primarily used in React Native applications for handling and transforming source maps. Source maps are files that provide a way to map code within a compressed file back to its original position in a source file. This is especially useful for debugging purposes in a development environment.

What are metro-source-map's main functionalities?

Source Map Generation

Generate a source map from raw mappings. This feature is crucial for creating source maps that help in debugging by mapping the transformed code back to the original source code.

const { fromRawMappings } = require('metro-source-map');
const mappings = [{
  generated: { line: 1, column: 5 },
  original: { line: 1, column: 5 },
  source: 'source.js'
}];
const sourceMap = fromRawMappings(mappings).toString();

Source Map Composition

Compose multiple source maps into a single source map. This is useful when dealing with transformations or optimizations that occur in multiple stages, allowing for a unified source map that reflects all changes.

const { composeSourceMaps } = require('metro-source-map');
const firstMap = { version: 3, sources: ['foo.js'], names: [], mappings: 'AAAA' };
const secondMap = { version: 3, sources: ['foo.js'], names: [], mappings: 'BBBB' };
const composedMap = composeSourceMaps(firstMap, secondMap);

Other packages similar to metro-source-map

Readme

Source

Metro

🚇 The source map generator for Metro.

(TODO)

FAQs

Last updated on 27 Jun 2022

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