glob-ln

1.0.5 • Public • Published

glob-ln

link files and directories with glob patterns and variables.

install

npm install glob-ln

use

 
var ln = require('glob-ln');
 
// async
var src = __dirname + '/fixtures/:module/public';
var dest = __dirname + '/public/:module';
var options = {force: true};
ln(src, dest, function(err) {
    if (err) console.error(err);
});
 
//or sync version
ln.sync('fixtures/:module/public', 'public/:module');
 

use absolute paths on src and dest to create links.

you can use the whole glob syntax in the src and dest pattern, as well as the glob-var variables starting with a colon :

functions

ln(srcPattern, destPattern [,options] ,callback)

async glob ln version.

ln.sync(srcPattern, destPattern [,options])

sync glob ln version.

options

// options with the following default values:
var options = {
 
  // remove destination before operation
  force: false
 
};

test

npm test

license

MIT

Package Sidebar

Install

npm i glob-ln

Weekly Downloads

0

Version

1.0.5

License

MIT

Last publish

Collaborators

  • andineck