Short description
Detailed description
Example
Before
Meteor.methods({a() {const doc = MyCollection.findOne({ _id: '12' });},});
After
Meteor.methods({async a() {const doc = await MyCollection.findOneAsync({ _id: '12' });},});
,
Before
Meteor.methods({anotherMethod() {const user = Meteor.users.findOne({ username: 'john_doe' });},});
After
Meteor.methods({async anotherMethod() {const user = await Meteor.users.findOneAsync({ username: 'john_doe' });},});
,
Before
Meteor.methods({getUserProfile() {const profile = Profiles.findOne({ userId: 'abc123' });},});
After
Meteor.methods({async getUserProfile() {const profile = await Profiles.findOneAsync({ userId: 'abc123' });},});
Build custom codemods
Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community