Codemod verified
Regularly tested and maintained by our engineers and codemod expert community.
Netlify/sdk
migration
byCodemod
Netlify/0.8.4/AddApiHandler
Last update
Jan 10, 2025
This codemod renames addHandler
to addApiHandler
as required in Netlify SDK v0.8.1.
Before
import { NetlifyIntegration } from "@netlify/sdk";const integration = new NetlifyIntegration();integration.addHandler("some-function", async (event, context) => {});
After
import { NetlifyIntegration } from "@netlify/sdk";const integration = new NetlifyIntegration();integration.addApiHandler("some-function", async (event, context) => {});
Build custom codemods
Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community