I want to organize my Meteor app in modules, i.e. having a folder for each specific section or functionality of my app containing all related files.
This would preferably also include static assets such as images but the special public/
folder only seems to work in the project root.
Or am I missing something?
For my project, it feels like overkill (less clean, even) having the overhead of creating a proper package for every little module of my app.
Unfortunately the only way to do it is to use a package. You can add static assets to a package, and the file can be accessed with the URL:
/packages/[package name]/[path to file]
. Here's an example of apackage.js
for hopscotch:As you can see, all of the images are under the
img
directory within the package. To access thesprite-green.png
file, I would use/packages/hopscotch/img/sprite-green.png
.