kevinharvey
kevinharvey

Reputation: 858

Recommended way to require Node.js modules in Meteor

I'm hacking my way through my first Meteor app, and I've opened a bit of a rabbit hole in trying to connect to S3. I've installed awssum using meteorite, but it appears that I need to install the Node.js module of the same name to actually work through the examples. I'll eventually deploy my app to Heroku, and I'd like to be able to package my dependencies with my code. Googling a bit I've found a number of ways to do this, and I'm wondering which is close to being the best practice:

Which route should I take?

Upvotes: 4

Views: 1742

Answers (1)

debergalis
debergalis

Reputation: 11870

We are closing in on a release that interoperates w/ NPM packages. See Avi's writeup on meteor-talk.

He also gave a tech talk at last month's Devshop previewing the work, using S3 as the example: http://youtu.be/kA-QB9rQCq8

Upvotes: 4

Related Questions