A better way to build apps

PHP, Django, Ruby on Rails, .NET, Java, Node.js
etc etc...
??? Perdido??
100% Javacript
Un solo idioma
Misma manera de programar en cliente y servidor
MUY MUY simple para empezar
simplicity === productivity
Velocidad de desarollo
Menos costes
MVP (Minimun Viable Product)
Instalar
$ curl https://install.meteor.com | /bin/sh
(Windows) http://win.meteor.com/
Crear
$ meteor create bbpmi
Lanzar
$ cd bbpmi
$ meteor
=> Meteor server running on: http://localhost:3000/
./meteor/client/packages/server/public
/client/compatibility jquery.timeago.js/helpers router.js config.js users.js/cssbootstrap-theme.css/views/home home.html home.js home.css /etc etc
/serversensitive.jspublications.jsadmin.jsstartup.jsemail.js
$ meteor create bbpmibbpmi: created. To run your new app: cd bbpmi meteor
$ meteor deploy bbpmiopen http://bbpmi.meteor.com
#OR$meteor deploy www.bbpmi.comCNAME pointing to origin.meteor.com
$ meteor bundle myapp.tgz<template name="usuario"><h1>{{nombre}}</h1><p>{{trabajo}}<p></template>
Usuarios = new Meteor.Collection("usuarios"); Usuarios.find();
Usuarios.findOne();
Usuarios.insert();
Usuarios.update();
Usuarios.remove();
meteor deploy $ meteor list accounts-base A user account system
accounts-facebook Login service for Facebook accounts
accounts-github Login service for Github accounts
accounts-google Login service for Google accounts
accounts-meetup Login service for Meetup accounts
accounts-password Password support for accounts.
accounts-twitter Login service for Twitter accounts
accounts-ui Simple templates to add login widgets to an app.
accounts-ui-unstyled Unstyled version of login widgets
accounts-weibo Login service for Sina Weibo accounts
amplify API for Persistant Storage, PubSub and Request
appcache enable the application cache in the browser
audit-argument-checks Try to detect inadequate input sanitization
autopublish Automatically publish the entire database to all clients
backbone A minimalist client-side MVC framework
bootstrap Front-end framework from Twitter
code-prettify Syntax highlighting of code, from Google
coffeescript Javascript dialect with fewer braces and semicolons
d3 Library for manipulating documents based on data.
ejson Extended and Extensable JSON library
email Send email messages
force-ssl Require this application to use secure transport (HTTPS)
handlebars Simple semantic templating language
htmljs Easy macros for generating DOM elements in Javascript
http Make HTTP calls to remote servers
insecure Allow all database writes by default
jquery Manipulate the DOM using CSS selectors
jquery-history pushState module from the jQuery project
jquery-layout Easily create arbitrary multicolumn layouts
jquery-waypoints Execute a function when the user scrolls past an element
less The dynamic stylesheet language.
madewith Made With Meteor badge
page-js-ie-support Tiny ~1200 byte Express-inspired client-side router
preserve-inputs Automatically preserve all form fields with a unique id
router A reactive router built on page.js
showdown Markdown-to-HTML processor
spiderable Makes the application crawlable to web spiders.
spin Simple spinner package for Meteor
stylus Expressive, dynamic, robust CSS.
underscore Collection of small helper functions: _.map, _.each, ...
$ meteor add accounts-facebook
$ meteor remove accounts-facebook