On Github zombiebaron / TechLancaster-Meteor-Talk
Created by Rob Fisher / @bler
meteor.js is a reactive web framework for quickly building powerful single page web applications. A new development environment to take the pain out of building apps for the web.
Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).Routing and Rendering Logic abstracted away behind a sensible framework. Just write custom logic and meteor does the rest.
Because data is written locally then synchronized remotely the application feels immediate despite bandwidth concerns. Screen updates are immediate w/o having to wait for the server.
No system downtime. When new code is released it is automatically injected into existing clients. No refreshing, no reconnecting, no hassles.
Take control of your Javascript code. UI code runs in the browser but sensitive code runs in privileged environemnt on the server.
Modular Design: One command to package an entire app. One command to unpack and 'install' your app wherever node.js is installed. Choose the hosting environment your comfortable with.
Data store is by default mongoDB but simple DDP protocol means you can get meteor to run anywhere with any backend.
The meteor core is a tiny set of minimal packages to get meteor going. Replace handlebars with your preferred templating engine. Add smart packages to client and/or server code. Package management is a breeze with meteorite!
$ curl https://install.meteor.com/ | sh
$ meteor create projectName $ cd meteor $ meteor
$ meteor add bootstrap $ meteor add accounts-ui $ meteor add insecure
$ meteor install-sdk ios $ meteor install-sdk android $ meteor add-platform ios $ meteor add-platform android
meteor.js comes with complete sample projects useful for getting started
$ meteor create --example todo
meteor.js is a web framework that takes the pain out of writting web applications. An entire set of tools to write the parts of your application that make your application yours and makes the plumbing as simple as possible.
Visit meteor's project page for more information.