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

import-move-codemod

v0.0.3

Published

This babel plugin should be used as codemod for bulk import refactorings a.k.a module move refactorings

Downloads

35,696

Readme

import-move-codemod

npm

Codemod to move imports from one module to another. Super useful in huge monorepos or huge migrations of 3rd party packages.

Usage

Inside your project root run For npm

npm i import-move-codemod --save-dev

or for yarn

yarn add import-move-codemod --dev

or for pnpm

pnpm add import-move-codemod --D

Before the run you need to create a file with a config, let say codemod.json

{
  "module": {
    "from": "one",
    "to": "two"
  },
  "specifiers": ["One"]
}

Then for example to run codemod against all the files in /src run

npx @codemod/cli -p import-move-codemod -o [email protected] --printer prettier /src 

What refactorings are available

Move of one or multiple named imports from one module to another

{
  module: {
    from: "one",
    to: "two"
  },
  specifiers: ["One"]
}
import { One } from 'one'

//      ↓ ↓ ↓ ↓ ↓ ↓

import { One } from 'two';
{
  module: {
    from: "one",
    to: "two"
  },
  specifiers: ["One", "Two"]
}
import { One, Two } from 'one'

//      ↓ ↓ ↓ ↓ ↓ ↓

import { One, Two } from 'two';
import { One as OneA, Two as TwoA } from 'one'

//      ↓ ↓ ↓ ↓ ↓ ↓

import { One as OneA, Two as TwoA } from 'two';
{
  module: {
    from: "one",
    to: "two"
  },
  specifiers: ["Two"]
}
import { One, Two } from 'one'

//      ↓ ↓ ↓ ↓ ↓ ↓

import { Two } from 'two';
import { One } from 'one';

Move named imports and default in one go

{
  module: {
    from: "one",
    to: "two"
  },
  specifiers: ["default", "One", "Two"]
}
import ADefault, { One, Two, Three } from 'one'

//     ↓ ↓ ↓ ↓ ↓ ↓

import ADefault, { One, Two } from 'two';
import { Three } from 'one';
{
  module: {
    from: "one",
    to: "two"
  },
  specifiers: ["default", "Two"]
}
import One, { Two } from 'one'

 //     ↓ ↓ ↓ ↓ ↓ ↓

import One, { Two } from 'two';

Move everything i.e. module rename

{
  module: {
    from: "one",
    to: "two"
  },
  specifiers: ["*"]
}
import ADefault, { One, Two, Three } from 'one'

//      ↓ ↓ ↓ ↓ ↓ ↓

import ADefault, { One, Two, Three } from 'two';

Move named imports and rename them

{
  module: {
    from: "one",
    to: "two"
  },
  specifiers: {
    One: "OneR",
    Two: "TwoR"
  }
}
import ADefault, { One, Two } from 'one'

//      ↓ ↓ ↓ ↓ ↓ ↓

import { OneR, TwoR } from 'two';
import ADefault from 'one';
import { One, Two } from 'one'

//      ↓ ↓ ↓ ↓ ↓ ↓

import { OneR, TwoR } from 'two';

Move default import to named

{
  module: {
    from: "one",
    to: "two"
  },
  specifiers: { default: "One" }
}
import One, { Two } from 'one'

//      ↓ ↓ ↓ ↓ ↓ ↓

import { One } from 'two';
import { Two } from 'one';
import One from 'one'

//      ↓ ↓ ↓ ↓ ↓ ↓

import { One } from 'two';

Move only default import

{
  module: {
    from: "one",
    to: "two"
  },
  specifiers: ["default"]
}
import ADefault, { One, Two, Three } from 'one'

//      ↓ ↓ ↓ ↓ ↓ ↓

import ADefault from 'two';
import { One, Two, Three } from 'one';
import One from 'one'

//      ↓ ↓ ↓ ↓ ↓ ↓

import One from 'two';

Make default import from named

{
  module: {
    from: "one",
    to: "two"
  },
  specifiers: {
    One: "default"
  }
}
import { One } from 'one'

//      ↓ ↓ ↓ ↓ ↓ ↓

import One from 'two';