easy-renamer
Easily rename files using custom rename functions that are automatically used against any filepaths that match the associated regex or glob patterns.
Install
Install with npm:
$ npm install easy-renamer --save
Examples
See examples. To run the examples, git clone the project then run the following from the root of the project:
$ npm i && node example
Usage
var Renamer = ;var renamer = destBase: 'foo/bar'; renamer; renamer;//=> 'a/b/c.html'
Example with multiple patterns
var Renamer = ;var renamer = ; { return { return path; };} // use glob patterns...renamer; // or regexrenamer; ;
Changelog
v0.3.0
- Renamed
.match()
method to.matcher()
(this is the last time, I promise!) file.name
property was renamed tofile.filename
v0.2.0
- Renamed
.pattern()
method to.match()
- Implements lazy-caching
Related projects
You might also be interested in these projects:
- map-files: Return an object for a glob of files. Pass a
rename
function for the keys,… more | homepage - micromatch: Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. Just… more | homepage
- parse-filepath: Pollyfill for node.js
path.parse
, parses a filepath into an object. | homepage
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Building docs
Generate readme and API documentation with verb:
$ npm install verb && npm run docs
Or, if verb is installed globally:
$ verb
Running tests
Install dev dependencies:
$ npm install -d && npm test
Author
Jon Schlinkert
License
Copyright © 2016, Jon Schlinkert. Released under the MIT license.
This file was generated by verb, v, on April 02, 2016.