All learning resources here are being provided courtesy of Evented Mind and have been produced around version 0.7 of Meteor.
They are a good source for learning Javascript and understanding Meteor, the templating system inside Meteor, routing with Iron Router, pub-sub, methods, server side best practices. For more modern frontend frameworks you may refer to other sources like meteor.com, leveluptutorials.com.
Javascript
Javascript Functions
  • 1. Functions are First Class
  • 2. Creating Functions
  • 3. Functions are Reference Types
  • 4. Working with Function Arguments
  • 5. "this"
  • 6. Creating and Calling Functions
  • 7. Introducing Scope
  • 8. Understanding Scope Chains
  • 9. Function Closures
  • 10. Scope Follows a Function
  • 11. Functional Patterns
Javascript Objects
  • 0. Introduction
  • 1. What are Objects
  • 2. Constructing Objects
  • 3. Configuring Object Properties
  • 4. Objects Inherit from Other Objects
  • 5. Creating Objects with Object.create
  • 6. Using Constructor Functions
  • 7. Data Types
  • 8. Reference and Value Types
  • 9. Native Constructor Functions
  • 10. Enumerating Properties and hasOwnProperty
The Javascript Runtime
  • 1. Introduction
  • 2. Getting Set Up
  • 3. The Call Stack
  • 4. Jumping the Call Stack with Try, Catch and Throw
  • 5. The Event Loop
  • 6. Using Timers
  • 7. Asynchronous Code
Meteor
Getting Started
  • 1. Introduction
  • 2. Getting Set Up
  • 3. Using Git, Github and Meteor Versions
  • 4. Build a Simple Application Part 1
  • 5. Build a Simple Application Part 2
  • 6. Build a Simple Application Part 3
  • 7. Build a Simple Application Part 4
  • 8. What's Next?
Build
1. Build a Multi Page App with Iron Meteor
  • 1. Introduction
  • 2. Creating the Project with Iron Scaffolding
  • 3. The Master Layout
  • 4. Routes and Controllers
  • 5. Customizing Login with Meteor OAuth
  • 6. Collections and Subscriptions
  • 7. Generating Templates
  • 8. Routing with Parameters
  • 9. Using Reactive State
  • 10. Adding Multiple Users
  • 11. Adding Comments
  • 12. Securing the Publish Functions
2. Setting Up Meteor Projects
  • 1. Introduction
  • 2. Project Structure
  • 3. Configuration Settings
  • 4. Installing Multiple Versions of NodeJS
  • 5. The Meteor Build System
  • 6. Application Structure
  • 7. The Meteor Package System
  • 8. Working with Different Meteor Versions
  • 9. Using a Start Script
3. Using Iron Router
  • 1. Introduction
  • 2. Getting Started
  • 3. Dynamic Paths
  • 4. Link Helpers
  • 5. Rendering with Data
  • 6. Layouts and Regions
  • 7. Using Route Options
  • 8. Subscribing to Data
  • 9. Using the new waitOn Option
  • 10. Hooks and Plugins
  • 11. Server Side Routes
  • 12. Additional Resources
Core
1. Meteor Reactivity with Deps
  • 1. Introduction
  • 2. Reactivity with Meteor
  • 3. The Computation Object
  • 4. Understanding Deps.flush
  • 5. Tracking Multiple Computations with Deps.Dependency
  • 6. Build a Simple Reactive Data Source
2. Introduction to DDP
  • 1. Introduction
  • 2. How HTTP Works
  • 3. The DDP Package
  • 4. Debugging the Server with Node Inspector
  • 5. The DDP Server
  • 6. DDP Session
3. Publish Subscribe in Meteor
  • 1. PubSub in Meteor
  • 2. Mechanics of PubSub
  • 3. Publishing a Cursor
  • 4. Merging the Client View of Data
  • 5. The Connection Data Store
4. RPC with Meteor Methods
  • 1. A Tour of Meteor Methods
  • 2. Introduction to Meteor Methods
  • 3. The Mechanics of Methods
  • 4. Collections Use Methods
  • 5. The Invalidation Crossbar
  • 6. Using the Write Fence
  • 7. Synchronizing Methods Writes
  • 8. Mechanics of Method Writes
  • 9. Writing Our Own Local Cache
  • 10. Saving and Retrieving Original Documents
  • 11. Unblocking a Method
5. Meteor Fibers and Dynamics
  • 1. Introduction
  • 2. What Does it Mean to be Async
  • 3. About Fibers
  • 4. Using Fibers to Write Synchronous Style Code
  • 5. Dynamic Scoping with Meteor Dynamics
  • 6. Using bindEnvironment
  • 7.Meteor Async Wrappers
  • 8. How Meteor Uses Environment Variables
6. Hot Code Push with Reload and Autoupdate
  • 1. Introducing the Reload and Autoupdate Packages
  • 2. Working with the Reload Package
  • 3. How the Autoupdate Package Works
  • 4. Using a Custom onMigrate API
  • 5. Case Study Using onMigrate with Video