
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Move a JavaScript file and update all affected requires (in the file and references to the file) automatically.
npm install -g mvjs
cd path/to/my/project
mvjs myfile.js newlocation.js
var mvjs = require('mvjs');
/*
options: object with the following keys:
fromPath: (required) source path of the .js file to move, absolute or relative to rootDir
toPath: (required) destination path of the moved .js file, absolute or relative to rootDir
rootDir: (optional) project root directory that gets recursively scanned for references to the file to move
default: process.cwd()
filter: (optional) function to call with the path and modified contents of every file that references the moved .js
file via require(), so you can do regex substitution or the like. if the function returns a value,
that value will overwrite the file.
e.g.:
function(modifiedFile, fileContents) { return fileContents.replace(/someVar/g, 'anotherVar'); }
cb: (optional) function to call when move is complete, called with an error, if any, as the first parameter
and an array of modified filenames as the second
e.g.:
function(err, filesModified) { ... }
*/
mvjs({
fromPath: 'myfile.js',
toPath: 'newlocation.js',
rootDir: 'path/to/my/project',
filter: function(modifiedFile, fileContents) {
return fileContents.replace(/someVar/g, 'anotherVar');
}
}, function(err, filesModified) {
if (!err) {
console.log('Requires updated in files: ' + filesModified.join(','));
}
});
MIT. See included LICENSE file.
FAQs
Move js files and update all requires automatically.
The npm package mvjs receives a total of 1 weekly downloads. As such, mvjs popularity was classified as not popular.
We found that mvjs 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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.