npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

batch-rename-by-function

v2.0.0

Published

Batch rename files and folders by providing a JS function

Downloads

30

Readme

batch-rename-by-function

npm package

NPM version License NPM downloads Dependency Status Dev Dependency Status Open Issues Closed Issues contributions welcome

Batch rename files and folders by providing a JS function.

How to use

npm install -g batch-rename-by-function

Navigate to the folder you want, and create a JS file there, my-renamer.js, like this:

module.exports = filename => filename.replace("Season 1 - ", "Season 01 - ");

And then execute

batch-rename-by-function my-renamer.js

to see all the changes that would be made (without actually renaming anything, hence dry-run), and if that's really what you want, execute

batch-rename-by-function my-renamer.js --no-dry-run

to perform the actual renaming. Note that batch-rename-by-function acts on every file/folder in the current working directory, and runs in dry-run mode (i.e. simulation mode) by default. To actually rename files, the --no-dry-run options must be set (or its alias --force or even -F).

The file my-renamer.js doesn't have to be in the same folder as the renames (just give the relative path for it). Also, batch-rename-by-function will automatically skip your JS file (in this example, my-renamer.js) if it is present in the current directory (instead of trying to rename it as well).

To rename recursively, i.e., rename nested files/folders as well, just use the --recursive option (or its alias, --nested). This way nested files/folders will be navigated too.

The renaming function also receives a second parameter, data, which is an object that can be useful:

module.exports = (filename, data) => {
    // Skip folders
    if (data.isDirectory) return filename;

    // Use data.parentFolder to get the relative path to the parent folder
    
    // Use data.depth to know how deep you are in the recursive calls
    // (recall to use the --recursive option to rename recursively)

    // ...
};

The commands batch-rename-by-function --help and batch-rename-by-function --version are also available:

Usage: batch-rename-by-function path/to/my/renamer/file.js

  Applies the function exported by the given JS file on every file present in
  the current folder, except the given JS file (if present), including folders.

  The renaming function receives two parameters. The first is the name of the
  object (file/directory), and the second is a data object with three fields:
  isDirectory (boolean), depth (int) and parentFolder (string).

Options:
  --help                     Show help                                 [boolean]
  --version                  Show version number                       [boolean]
  --recursive, --nested      Whether to rename nested files
                                                      [boolean] [default: false]
  --no-dry-run, --force, -F  Perform the actual renaming (if omitted, a dry-run
                             will occur instead, i.e., just a simulation of the
                             renamings).              [boolean] [default: false]

Examples:
  batch-rename-by-function myRenamer.js

Why batch-rename-by-function?

A comparison with renamer, a more known module for batch renaming:

  • batch-rename-by-function allows you to write arbitrarily complicated javascript to calculate the new names for your files in a very straightforward way, while to do this with renamer you would have to develop a custom plugin.
  • You don't have to know JavaScript to use renamer, but you must know it to use batch-rename-by-function.

Acknowledgements

Thanks Rubens Mariuzzo for this great guide on creating CLI utilities in NodeJS.

Contributing

Any contribution is very welcome. Feel free to open an issue about anything: questions, suggestions, feature requests, bugs, improvements, mistakes, whatever. I will be always looking.

Changelog

The changelog is available in CHANGELOG.md.

License

MIT (c) Pedro Augusto de Paula Barbosa