deepwell / meteor-raven

Raven/Sentry integration package for Meteor
29 stars 10 forks source link

Turn into a raven.js plugin #2

Closed mattrobenolt closed 10 years ago

mattrobenolt commented 10 years ago

Any opposition to making this a plugin that we distribute with the others? Would like to get it in https://github.com/getsentry/raven-js/tree/master/plugins :)

deepwell commented 10 years ago

None whatsoever, I would be happy to see you fork this code.

mattrobenolt commented 10 years ago

I don't know anything about meteor, so I'd rely on you to bring that in. Is it possible to bundle up this whole plugin into a single file, say, meteor.js that is dropped in?

deepwell commented 10 years ago

That's not possible (AFAIK), the only way to install a Meteor package is through Meteorite. You can see the package here: https://atmosphere.meteor.com/package/raven

It does not work as a stand alone file. Meteor's package format works for both frontend and backend files, with minification, compression etc. done for browser sent files (not server files) on production deploy.