source-map-to-files
Version:
A tool for converting source map files to the original files, making it easier to debug and troubleshoot your code.
54 lines (35 loc) • 1.34 kB
Markdown
using npm:
```bash
npm install source-map-to-files
```
Or with Yarn:
```bash
yarn add source-map-to-files
```
```javascript
import { convertSourceMapToSource } from 'source-map-to-files';
// Path to the source map file
const sourceMapPath = './path/to/your/source-map.js.map';
// Path to the output directory where the source files will be saved
const outputPath = './path/to/output/directory';
// (Optional) Custom logging function
const logger = (message) => {
console.log(`[Custom Logger]: ${message}`);
};
// Convert the source map to source files
convertSourceMapToSource(sourceMapPath, outputPath, logger)
.then(() => console.log('Conversion completed.'))
.catch((error) => console.error('An error occurred:', error));
```
Convert source map files to source files.
- `sourceMapPath` - The path of the source map file.
- `outputPath` - The path where the source files will be saved.
- `logger` - (Optional) An optional logger function for custom logging.
This library is released under the [MIT License](LICENSE).
A simple library to convert source map files to their original source files.
Install the library