
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
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.
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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.