Its an introductory blog post which aims at projecting an overview of all the above technologies and how they can be used together.
Introduction
Meteor is an open-source JavaScript platform for building web apps.
http://docs.meteor.com/
Installation:
[curl https://install.meteor.com | /bin/sh]
First Project:
meteor create ~/myapp
cd ~/myapp
meteor
Notes:
- it saves the scripts at
/usr/local/bin/meteor
- it uses MongoDB for database
- it uses DDP for client-server communication.
- for indepth reading core features/implementations of Meteor
- for 3rd party meteor modules, we have Atmosphere
- to manage 3rd party modules we have to use Meteorite
- Our JavaScript code can run in two environments: the client (browser), and the server (a Node.js container on a server).
http://meteorhacks.com/introduction-to-ddp.html
DDP - Distributed Data Protocol
- Meteor uses it to communicate...