Recommended way to require Node.js modules in Meteor

I am making my way through my first Meteor app, and I opened a little rabbit hole trying to connect to S3. I installed awssum using a meteorite, but it looks like I need to install the Node.js module with the same name in order to actually work with the examples. I end up distributing my application in Heroku, and I would like to be able to pack my dependencies with my code. Along the way, I found a few ways to do this, and I wonder what's close to the best:

Which route should I take?

+4
source share
1 answer

We are closing a release that interacts with packages / NPM. See Avi recording meteorite current.

He also gave a technical talk last month to Devshop, looking at work using S3 as an example: http://youtu.be/kA-QB9rQCq8

+4
source

All Articles