A VS Code extension that allows you to quickly navigate to Meteor collection and method definitions using "Go to Definition" (F12).
Features
Navigate to collections : Click on a collection name (e.g., CollectionName) to go to its definition
Navigate to methods : Click on a method's name (e.g., CollectionName.methods.methodsName) to go to its definition by clicking on "methodsName"
Multi-language support : Works with JavaScript, TypeScript, JSX, and TSX
How to use
Place your cursor on a Meteor collection or method
Press F12 or right-click → "Go to Definition" OR On MacOS → CMD + Left-Click
The extension will take you directly to the definition
Examples
// Click on "Booking" to go to the collection definition
Booking.methods.create({ ... });
// Click on "create" to go to the method definition
Booking.methods.create({ ... });
Expected project structure
The extension looks for files in the following structure: