Use case
Framework
Owner
- Devcycle To Openfeature Nodejs Initialization Transform- This Codemod will transform the initialization of the DevCycle Node.js Server SDK to use OpenFeature Node.js SDK. 
- Add Cookie Path To All Methods- This codemod adds - { path: '/' }to all- cookiesmethod calls in your TypeScript project. It ensures that cookies are set, deleted, or serialized with the correct path specified, which helps in consistent cookie handling across different environments.
- Event Handling On Change- This codemod automates the update of your - onChangeevent handler function to support the new- Descendant[]type and selection handling introduced in version 0.104.
- Flatten Deno.Json- This codemod helps developers migrate their deno.json configuration files to the new flattened schema format, making them easier to read and write. It automates the transformation of nested properties to their new top-level structure as outlined in recent Deno updates. 
- Vue 2 To Vue 3 Refs And Methods- Example- This codemod turns X into Y. It also does Z. Note: this is a contrived example. Please modify it. 
- React 17 Default Props To Params- Example- This codemod turns X into Y. It also does Z. Note: this is a contrived example. Please modify it. 
- Array To Set Conversion- A codemod which makes the array search operation more optimal and efficient, by converting the array into a set and executing the set's has method to find the desired element. 
- Webpack To Rspack/Migration Recipe- This recipe is a set of codemods that will help migrate from webpack to rspack. 
- Webpack To Rspack/Remove Raw Loader To Type Asset Source- Rspack implements Webpack 5's Asset Modules, using asset modules to replace raw-loader to 'asset/source' for better performance. 
- Webpack To Rspack/Remove Url Loader To Type Asset Inline- Rspack implements Webpack 5's Asset Modules, using asset modules to replace url-loader to 'asset/inline' for better performance. 
- Webpack To Rspack/Remove File Loader To Type Asset Resource- Rspack implements Webpack 5's Asset Modules, using asset modules to replace file-loader to 'asset/resource' for better performance. 
- Webpack To Rspack/Migrate Update Babel Loader To Swc Loader- Using builtin:swc-loader offers better performance compared to the babel-loader and the external swc-loader, as it avoids frequent communication between JavaScript and Rust. 
- React Router/7/Add V7 RelativeSplatPath Flag- This transformation adds the necessary configuration to enable v7 features, specifically the v7_relativeSplatPath flag. It affects both components and createBrowserRouter configurations. 
- Styledictionary/4/Logging- What Changed
- Styledictionary/4/Hook Api Actions- What Changed
- Reka Ui/Remove Calendar Step Prop- Use prevPage/nextPage props for greater control. 
- Meteor/V3/Update React- This codemod helps in transforming react to meteor 
- Fastify/5/MigrationRecipe- This recipe provides a set of codemods designed to assist with migrating to Fastify 5. Each codemod addresses specific changes and enhancements introduced in Fastify 5. 
- Fastify/5/GetResponseTime To ElapsedTime- This codemod converts - reply.getResponseTime()to- reply.elapsedTime, reflecting changes in Fastify v5 for retrieving response time.