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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@zanreal/nemo-codemod

v1.0.0

Published

Codemod that migrates a project from @rescale/nemo to @zanreal/nemo

Downloads

95

Readme

@zanreal/nemo-codemod

Migrates a project from @rescale/nemo to @zanreal/nemo.

The API did not change in the move — only the package name did — so this codemod is a rename and nothing more. It exists so you do not have to trust a find and replace across your codebase.

Usage

npx @zanreal/nemo-codemod

Preview first if you'd rather look before you leap. --dry reports what would change without writing anything; add --print to see the transformed source:

npx @zanreal/nemo-codemod --dry --print

Then reinstall so your lockfile picks up the new package:

npm install   # or pnpm install / yarn / bun install

What it changes

Module specifiers, in every position they can appear:

- import { createNEMO } from '@rescale/nemo';
+ import { createNEMO } from '@zanreal/nemo';

- import type { MiddlewareConfig } from '@rescale/nemo';
+ import type { MiddlewareConfig } from '@zanreal/nemo';

- const { createNEMO } = require('@rescale/nemo');
+ const { createNEMO } = require('@zanreal/nemo');

- export * from '@rescale/nemo/storage';
+ export * from '@zanreal/nemo/storage';

…including dynamic import(), require.resolve(), jest.mock() / vi.mock(), declare module, and typeof import(). Subpaths are preserved.

Dependencies, in every package.json it finds (skipping node_modules and build output):

  "dependencies": {
-   "@rescale/nemo": "^2.1.0"
+   "@zanreal/nemo": "^3.0.0"
  }

The entry keeps its position in the object so the diff stays small. If you already depend on @zanreal/nemo, the stale alias entry is dropped instead of leaving you with both.

What it does not change

It is an AST transform, not a text substitution, so it only rewrites specifier positions. A @rescale/nemo in a comment, a docs string, or a changelog is left exactly as it was — usually what you want, since those are describing history.

One caveat: the transform matches require(...) and require.resolve(...) by shape, not by resolved binding. If you have shadowed require with your own local function, a call to it with the string '@rescale/nemo' will be rewritten too. Rare, but worth knowing before you skim the diff.

Lockfiles are also left alone — run your package manager's install afterwards. And if any file fails to transform, the codemod stops before touching package.json and exits non-zero, rather than renaming the dependency out from under sources that still import the old name.

Options

| Flag | Default | | |---|---|---| | --dry | off | Preview without writing | | --print | off | Print the transformed source of each changed file | | --dep-range <range> | ^3.0.0 | Semver range recorded for the renamed dependency | | --extensions <list> | js,jsx,ts,tsx,mjs,cjs,mts,cts | Which files to visit | | --ignore-pattern <glob> | — | Skip paths, sources and manifests alike; repeatable | | --skip-manifests | off | Only touch source files |

Paths can be passed positionally, defaulting to the current directory:

npx @zanreal/nemo-codemod src app --ignore-pattern '**/*.stories.tsx'

Notes

Review the diff and run your tests before committing — that advice holds for any codemod, this one included. If it produces something surprising, open an issue with the input that caused it.

Built on jscodeshift. MIT licensed.