šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

mvjs

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mvjs

Move js files and update all requires automatically.

0.2.0
latest
Source
npm
Version published
Weekly downloads
3
200%
Maintainers
1
Weekly downloads
Ā 
Created
Source

mvjs

Move a JavaScript file and update all affected requires (in the file and references to the file) automatically.

Installation:

npm install -g mvjs

Command Line Usage:

cd path/to/my/project
mvjs myfile.js newlocation.js

Module Usage:

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(','));
  }
});

License

MIT. See included LICENSE file.

Keywords

mvjs

FAQs

Package last updated on 17 Apr 2014

Did you know?

Socket

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