Folder Structure in Project?

I was wondering how we can structure our folders in our project. I am new to meteor and I am a little confused on how we can have a folder for templates and stylesheets and still able to access the correct html files to show on the website.

Hi, @allidoisace
welcome to the community.

I didn’t understand if you ask recommended folder structure or how to get started with Meteor.

Did you read TODO App tutorial?
If not you have to.
With that tutorial you build your first Meteor app.

Without modules, it doesn’t matter. 90% of what you care for is specifying if the particular file should show up on the server, client or both.

With modules… it doesn’t matter, as you can access files lying anywhere, as long as you specify the route when you call the module.

For details, read http://guide.meteor.com.

1 Like

That guide is exactly what I needed, I forgot they had one besides doc. Routing info and all that. Thanks a lot!

1 Like

Here is guide for Meteor 1.3 file and folder structure: http://guide.meteor.com/v1.3/structure.html#javascript-structure

1 Like

<3 Thanks a lot! :smiley: