I have a pretty simple application structure containing those libs
server - contain some configuration for routing and ENV
client - contain templates ( <template name=".*"></template> ) and a JS file for each template
collections
now inside the collections I have a file called "Albums.js" and has pretty simple content
var Albums = new Meteor.Collection("Albums");
now inside my client folder I am trying to access this Albums variable and I get an undefined error.
my goal is to take data from form and pass it to collection.insert
meteor
Yochai akoka
source share