Use case
Framework
Owner
- Meteor/V3/Update React- This codemod helps in transforming react to meteor 
- Meteor/V3/Mongo Db Async Methods- This codemod updates synchronous MongoDB operations in a Meteor project to use their asynchronous counterparts, making the code compatible with modern JavaScript best practices (using - async/await). It transforms methods such as- find,- findOne,- insert,- update,- remove, and- upsertto their asynchronous equivalents by appending- Asyncto method names and introducing- await.
- Meteor/V3/Migration Recipe- This recipe is a set of codemods that will help migrate to meteor v3 from meteor 2.x . 
- Meteor/V3/Add Await To Async Webapp Methods- Below are some webapp methods which are now async, thats why added await 
- Meteor/V3/Api Rename Express Migration- This codemod automates the process of updating API names from Connect to Express in your project. The codemod is specifically designed to align your codebase with the new naming conventions introduced after switching from Connect to Express in Meteor 3.0. 
- Meteor/V3/Call Async- This codemod replaces call with callAsync, since thats how meteor works with calls now. 
- Meteor/V3/User Async- This codemod reaplces Meteor.user with Meteor.userAsync. 
- Meteor/V3/Fibers To Async Promises- This codemod assists in removing the use of Fibers from your Meteor codebase, refactoring your code to utilize the modern - async/awaitpattern introduced in Meteor v3.
- Meteor/V3/Removed Functions- This codemod helps remove deprecated functions like - Promise.awaitand- Meteor.wrapAsyncfrom your Meteor codebase, aligning it with the new best practices introduced in Meteor v3.
- Meteor/V3/Renamed Functions- This codemod automates the migration of your Meteor project to version 3, updating function calls and modernizing your codebase to their renamed functions. 
- Meteor 1 Convert Sync Calls To Async- Short description