Structure of Folders in a Meteor Application
Learn about specialized folders available in MeteorJS.
Meteor folders
Some folders are important to Meteor and serve specific purposes. Listed below are some of these Meteor folders.
The server
folder
The code in the files in this folder only executes on the server.
The client
folder
The code contained in a client folder runs only on the client.
The imports
folder
The complete application code should be placed ...