How can i read the public directory in a meteor application inside my /server path.
I tried using the native \'fs\' package but i keep getting a file/di
\'fs\'
This is no longer true. For Meteor 0.8, the folder "../client/app" is public. Thus, use fs.readdirSync('../client/app') to get files and folders in public.
Source: personal experience and https://stackoverflow.com/a/18405793