Skip to content

Instantly share code, notes, and snippets.

@g8d3
Last active August 29, 2015 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save g8d3/a1d1bc916d0ab9fe57a6 to your computer and use it in GitHub Desktop.
Save g8d3/a1d1bc916d0ab9fe57a6 to your computer and use it in GitHub Desktop.
From FB learn Meteor Properly

Start learning today. You can master Meteor in less than 1 month! Meteor is easy to learn if you know JavaScript, HTML and a bit of CSS. Create your first Meteor application and play with it. Go through all lessons in this curriculum and try to understand every lesson. Try to code your first Meteor app, share your code (Github repo) in this group and wait for feedback. The best way to learn is by doing.

Create Meteor application

Templates, Helpers & Events

Session and reactivity

Collections

Insecure package

Meteor Methods

Autopublish package & Publish/Subscribe

Packages

Accounts packages

Application structure

Meteor and security

Debugging

You can use classic JavaScript console.log(someVariable); for debugging. Client-side console.log() is shown in your developers console in browser. Server-side console.log() is shown in your CLI (Command Line Interface).

Or you can learn how to use Chrome developer tools for debugging JavaScript: https://developer.chrome.com/devtools/docs/javascript-debugging

Mongol allows you to view and modify your client side documents in the browser: https://atmospherejs.com/msavin/mongol

JetSetter is a Get/Set tool for Meteor Sessions: https://atmospherejs.com/msavin/jetsetter

Read more about debugging Meteor applications: http://joshowens.me/easily-debugging-meteor-js/

Testing

Meteor makes it easy to make modern web apps. Now Velocity makes it easy to test them, too: http://velocity.meteor.com/

Deploy your app

For production Meteor applications use Meteor up: https://github.com/arunoda/meteor-up

Learn by example

A list of awesome open source Meteor.js applications: http://www.meteorapps.co/

Uploading images

https://github.com/Elfoslav/meteor-upload-images

Meteor jobs

Meteor community

Additional reading

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment