When writing a pure ES6-Meteor app it can be hard to not have access to your collection variables in the global namespace when debugging on the client.
For example when you do:
import { Mongo } from 'meteor/mongo';
const Streams = new Mongo.Collection('streams');
export default Streams;
There is no way to do console.log(Streams.find().fetch()) in your browser console.
I made a simple NPM-module to fix this: https://github.com/TimBroddin/export-client