
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.
vinyl-sourcemaps-apply
Advanced tools
Apply a source map to a vinyl file, merging it with preexisting source maps
The vinyl-sourcemaps-apply npm package is used to apply source maps to vinyl files, which are used in the Gulp build system. This package helps in maintaining the mapping between the original source code and the transformed code, which is useful for debugging purposes.
Apply Source Maps
This feature allows you to apply a source map to a vinyl file. The code sample demonstrates creating a vinyl file object, creating a source map consumer, and then applying the source map to the vinyl file using the vinyl-sourcemaps-apply package.
const applySourceMap = require('vinyl-sourcemaps-apply');
const vinylFile = require('vinyl');
const sourceMap = require('source-map');
// Create a vinyl file object
const file = new vinylFile({
cwd: '/',
base: '/test/',
path: '/test/file.js',
contents: Buffer.from('test content'),
sourceMap: {
version: 3,
file: 'file.js',
sources: ['file.coffee'],
names: [],
mappings: 'AAAA'
}
});
// Create a source map consumer
const map = new sourceMap.SourceMapConsumer(file.sourceMap);
// Apply the source map to the vinyl file
applySourceMap(file, map);
The gulp-sourcemaps package is used to generate and write source maps in the Gulp build system. It provides more comprehensive functionality for handling source maps, including initializing, writing, and loading source maps. Compared to vinyl-sourcemaps-apply, gulp-sourcemaps offers a more integrated solution for source map management within Gulp tasks.
The source-map package is a library for generating and consuming source maps. It provides low-level APIs for creating and manipulating source maps. While vinyl-sourcemaps-apply focuses on applying source maps to vinyl files, source-map offers a broader range of functionalities for working with source maps directly.
Apply a source map to a vinyl file, merging it with preexisting source maps.
var applySourceMap = require('vinyl-sourcemaps-apply');
applySourceMap(vinylFile, sourceMap);
var through = require('through2');
var applySourceMap = require('vinyl-sourcemaps-apply');
var myTransform = require('myTransform');
module.exports = function(options) {
function transform(file, encoding, callback) {
// generate source maps if plugin source-map present
if (file.sourceMap) {
options.makeSourceMaps = true;
}
// do normal plugin logic
var result = myTransform(file.contents, options);
file.contents = new Buffer(result.code);
// apply source map to the chain
if (file.sourceMap) {
applySourceMap(file, result.map);
}
this.push(file);
callback();
}
return through.obj(transform);
};
FAQs
Apply a source map to a vinyl file, merging it with preexisting source maps
The npm package vinyl-sourcemaps-apply receives a total of 896,828 weekly downloads. As such, vinyl-sourcemaps-apply popularity was classified as popular.
We found that vinyl-sourcemaps-apply 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.