I\'m impressed by Meteor and would like to use it with jQuery-Mobile. I\'d like to know if somebody has already built a sample integration app. If not, some guidelines would
I suggest taking a look at the jQuery package in the /packages/jquery folder.
All this does is add in the jquery.js file into the stack of files to get sent to the client. If you are after this you could add your own package called jquery-mobile and include the files it needs.
See the package.js file for how it works:
https://github.com/meteor/meteor/blob/master/packages/jquery/package.js
So just add the mobile files into your jquery-mobile package and do something like:
Package.on_use(function (api) {
api.add_files('jquery.mobile-1.1.0.min.css', 'client');
api.add_files('jquery.mobile-1.1.0.min.js', 'client');
});