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

cjs-rename

v0.0.10

Published

Move your JS files and it will update any dependent files with the new path.

Downloads

25

Readme

cjs-rename

Inspired by https://github.com/timruffles/misnomer/blob/master/README.md.

Given a module a bad name that is used all over your codebase and tests? Sounds like you want to rename a CJS module, and this here module can do that for you:

> cjs-rename lib/some-bad-name.js lib/some-good-name.js

Moving:
- moved lib/some-bad-name.js to lib/some-good-name.js

Fixing:
- [1] lib/foo/bad.js
- [1] lib/foo/qux.js
- [1] test/foo/bar.js

And magically, where you saw:

require('../../lib/some-bad-name');

You'll now find:

require('../../lib/some-good-name');

Search by filename

Don't want to type out filepaths? Then add the -s flag to do a search.

Notice how it moves both files in the lib and test folders.

> cjs-rename -s some-bad-name some-good-name

Moving:
- moved lib/some-bad-name.js to lib/some-good-name.js
- moved test/some-bad-name.js to test/some-good-name.js

Fixing:
- [1] lib/foo/bad.js
- [1] lib/foo/qux.js
- [1] test/foo/bar.js

Drymode

Drymode will show you the affect the command will have, without actually saving any changes. Just add the -d flag.

cjs-rename -s -d old new
Drymode: Will not save changes

Moving:
- moved lib/folder/old.js to lib/folder/new.js
-moved test/old.js to test/new.js

Fixing:
- [1] lib/folder/foo.js
- [1] test/foo.js

Install

npm install -g cjs-rename

CLI Usage

> cjs-rename

Usage: cjs-rename [options] [command]

Commands:

*                      cjs-rename from to [source]

Options:

-h, --help     output usage information
-V, --version  output the version number
-d, --dry      Do not write changes to disk.
-s, --search   Search by filename

Parameters:

  • from: path to the current file
  • to: path to the file has been moved to
  • source: (optional). Which folder to search through. Uses the current folder by default.

Example using current working directory

> cjs-rename source/template.js source/view.js

Fixing:
- [1] source/core.js
- [1] source/utils.js
- [1] test/template.js

Example using custom source directory

> cjs-rename template.js view.js source

Fixing:
- [1] source/core.js
- [1] source/utils.js
- [1] test/template.js

Module Usage

var Rename = require('cjs-rename');

var rename = new Rename({
    from: './source/path',
    to: './where/to/move/to',

    // optional
    cwd: proces.cwd(),
    dryrun: false,
    mode: 'path',
});

rename.run(function (err, changes) {
    if (err) {
        console.log(err);
    } else {
        console.log(changes);
    }
});

// Also supports promises
rename.run().then(function (changes) { ... });

// If you set 'options.dryrun', then you need to save your changes
rename.save();

Rename constructor

Create a new Rename instance.

Can be called with or without new.

Parameters:

  • options (object)
    • from (string) required
    • to (string) required
    • cwd (string)
    • dryrun (boolean)
    • mode (string)

Example:

var rename = Rename({
    from: 'old',
    to: 'new',
    cwd: '/home/project/folder',
    mode: 'search'
});

rename.run

Will move and rename files. Will automatically call rename.save unless you specify drymode: true in the options.

Parameters:

  • [fn] (function) : optional callback with signature fn(err, changes)

Example:

rename.run(function (err, changes) {
    if (err) {
        console.log('Error', err);
    } else {
        console.log(changes);
    }
});

rename.save

Save changes to disk.

Paramters:

  • [fn] (function) : optional callback with signature fn(err)

Example:

rename.save(function (err) {
    if (err) {
        console.log('Error', err);
    } else {
        console.log('Saved changes');
    }
});

Important Notes

  • This will only search through files with the .js and .coffee extensions.
  • It will ignore any node_modules folders.

Changelog

0.0.9

  • Change regex prefix so that it can match something(require('...'));.

0.0.8

  • Add support for moving files that do not exist (e.g. fixing a file that has already been moved).

0.0.7

  • Use 'unwire' instead of 'rewire' for tests.

0.0.6

  • Improve docs

0.0.5

  • Color output of cjs-rename command
  • Add languages.js so it should be pretty easy to add support for other languages
  • Store the files that will be moved in rename.files
  • Seperate API and rename code
  • Use xtnd.map to map over an array and ignoring undefined

0.0.4

  • Add support for coffeescript files
  • Can now move files
  • Add in scanning so that options.from can match multiple files
  • Add --search flag for searching by filename

0.0.3

  • Improve command line interface.
  • If the original 'require()' call didn't have the extension, than the replaced path will not have the extension.
  • Make 'options.folder' optional. It now uses the current working directory.
  • Add 'options.dryrun'. If set to a truthy value, it will not save changes to disk.
  • Add 'Rename.prototype.save'. This will write pending changes to disk.

0.0.2

  • Add github page to package.json

0.0.1

  • Initial commit

License

The MIT License (MIT)

Copyright (c) 2014 George Czabania

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.