I\'m sending a file from client-side to server side using XHR:
$(document).on(\'drop\', function(dropEvent) {
dropEvent.preventDefault();
_.each(dropEven
You can upload file with use of EJSON and normal meteor "methods" this way you will be able to get access to user data because it is visible only inside methods and publish functions on server side
this video tutorial may be a good start
also package CollectionFS provides some upload functionalities. It is now little outdated, but idea stays the same.