Codemods
Use codemods to upgrade your Next.js codebase when new features are released.
Codemods are transformations that run on your codebase programmatically. This allows a large number of changes to be programmatically applied without having to manually go through every file.
Next.js provides Codemod transformations to help upgrade your Next.js codebase when an API is updated or deprecated.
Usage
In your terminal, navigate (cd) into your project's folder, then run:
Replacing <transform> and <path> with appropriate values.
transform- name of transformpath- files or directory to transform--dryDo a dry-run, no code will be edited--printPrints the changed output for comparison
Codemods
16.0
Remove experimental_ppr Route Segment Config from App Router pages and layouts
remove-experimental-ppr
This codemod removes the experimental_ppr Route Segment Config from App Router pages and layouts.
Remove unstable_ prefix from stabilized API
remove-unstable-prefix
This codemod removes the unstable_ prefix from stabilized API.
For example:
Transforms into:
Migrate from deprecated middleware convention to proxy
middleware-to-proxy
This codemod migrates projects from using the deprecated middleware convention to using the proxy convention. It:
- Renames
middleware.<extension>toproxy.<extension>(e.g.middleware.tstoproxy.ts) - Renames named export
middlewaretoproxy - Renames Next.js config property
experimental.middlewarePrefetchtoexperimental.proxyPrefetch - Renames Next.js config property
experimental.middlewareClientMaxBodySizetoexperimental.proxyClientMaxBodySize - Renames Next.js config property
experimental.externalMiddlewareRewritesResolvetoexperimental.externalProxyRewritesResolve - Renames Next.js config property
skipMiddlewareUrlNormalizetoskipProxyUrlNormalize
For example:
Transforms into:
Migrate from next lint to ESLint CLI
next-lint-to-eslint-cli
This codemod migrates projects from using next lint to using the ESLint CLI with your local ESLint config. It:
- Creates an
eslint.config.mjsfile with Next.js recommended configurations - Updates
package.jsonscripts to useeslint .instead ofnext lint - Adds necessary ESLint dependencies to
package.json - Preserves existing ESLint configurations when found
For example:
Becomes:
And creates:
15.0
Transform App Router Route Segment Config runtime value from experimental-edge to edge
app-dir-runtime-config-experimental-edge
Note: This codemod is App Router specific.
This codemod transforms Route Segment Config runtime value experimental-edge to edge.
For example:
Transforms into:
Migrate to async Dynamic APIs
APIs that opted into dynamic rendering that previously supported synchronous access are now asynchronous. You can read more about this breaking change in the upgrade guide.
next-async-request-api
This codemod will transform dynamic APIs (cookies(), headers() and draftMode() from next/headers) that are now asynchronous to be properly awaited or wrapped with React.use() if applicable.
When an automatic migration isn't possible, the codemod will either add a typecast (if a TypeScript file) or a comment to inform the user that it needs to be manually reviewed & updated.
For example:
Transforms into:
When we detect property access on the params or searchParams props in the page / route entries (page.js, layout.js, route.js, or default.js) or the generateMetadata / generateViewport APIs,
it will attempt to transform the callsite from a sync to an async function, and await the property access. If it can't be made async (such as with a Client Component), it will use React.use to unwrap the promise .
For example:
Transforms into:
Good to know: When this codemod identifies a spot that might require manual intervention, but we aren't able to determine the exact fix, it will add a comment or typecast to the code to inform the user that it needs to be manually updated. These comments are prefixed with @next/codemod, and typecasts are prefixed with UnsafeUnwrapped.
Your build will error until these comments are explicitly removed. Read more.
Replace geo and ip properties of NextRequest with @vercel/functions
next-request-geo-ip
This codemod installs @vercel/functions and transforms geo and ip properties of NextRequest with corresponding @vercel/functions features.
For example:
Transforms into:
14.0
Migrate ImageResponse imports
next-og-import
This codemod moves transforms imports from next/server to next/og for usage of Dynamic OG Image Generation.
For example:
Transforms into:
Use viewport export
metadata-to-viewport-export
This codemod migrates certain viewport metadata to viewport export.
For example:
Transforms into:
13.2
Use Built-in Font
built-in-next-font
This codemod uninstalls the @next/font package and transforms @next/font imports into the built-in next/font.
For example:
Transforms into:
13.0
Rename Next Image Imports
next-image-to-legacy-image
Safely renames next/image imports in existing Next.js 10, 11, or 12 applications to next/legacy/image in Next.js 13. Also renames next/future/image to next/image.
For example:
Transforms into:
Migrate to the New Image Component
next-image-experimental
Dangerously migrates from next/legacy/image to the new next/image by adding inline styles and removing unused props.
- Removes
layoutprop and addsstyle. - Removes
objectFitprop and addsstyle. - Removes
objectPositionprop and addsstyle. - Removes
lazyBoundaryprop. - Removes
lazyRootprop.
Remove <a> Tags From Link Components
new-link
Remove <a> tags inside Link Components.
For example:
11
Migrate from CRA
cra-to-next
Migrates a Create React App project to Next.js; creating a Pages Router and necessary config to match behavior. Client-side only rendering is leveraged initially to prevent breaking compatibility due to window usage during SSR and can be enabled seamlessly to allow the gradual adoption of Next.js specific features.
Please share any feedback related to this transform in this discussion.
10
Add React imports
add-missing-react-import
Transforms files that do not import React to include the import in order for the new React JSX transform to work.
For example:
Transforms into:
9
Transform Anonymous Components into Named Components
name-default-component
Versions 9 and above.
Transforms anonymous components into named components to make sure they work with Fast Refresh.
For example:
Transforms into:
The component will have a camel-cased name based on the name of the file, and it also works with arrow functions.
8
Note: Built-in AMP support and this codemod have been removed in Next.js 16.
Transform AMP HOC into page config
withamp-to-config
Transforms the withAmp HOC into Next.js 9 page configuration.
For example:
6
Use withRouter
url-to-withrouter
Transforms the deprecated automatically injected url property on top level pages to using withRouter and the router property it injects. Read more here: https://nextjs.org/docs/messages/url-deprecated
For example:
This is one case. All the cases that are transformed (and tested) can be found in the __testfixtures__ directory.