

Meteor is an open-source platform for building top-quality, reactive, web apps in a fraction of the time , whether you're an expert developer or just getting started .

Don't send HTML over the network.
Send data and let the client decide how to render it.
$ curl https://install.meteor.com | /bin/sh $ meteor --helprun [default] Run this project in local development modecreate Create a new project update Upgrade this project to the latest version of Meteor add Add a package to this project remove Remove a package from this project list List available packages bundle Pack this project up into a tarball mongo Connect to the Mongo database for the specified site reset Reset the project state. Erases the local database. deploy Deploy this project to Meteor logs Show logs for specified site authorized View or change authorized users for a site claim Claim a site deployed with an old Meteor version login Log in to your Meteor developer account logout Log out of your Meteor developer account whoami Prints the username of your Meteor developer account test-packages Test one or more packages login Log in to your Meteor account
$ meteor create meetupjs$ cd meetupjs $ meteor[[[[[ ~/Meteor/meetupjs ]]]]] => Started proxy. => Started MongoDB. => Started your app. => App running at: http://localhost:3000/
meetupjs $ ls
meetupjs.css meetupjs.html meetupjs.js
/client Files available to the client *only*
/server Files available to the server side *only*
/public Home directory of the app, client assets
Clients = new Meteor.collection("clients");Template.clients.clientList = function() {return Clients.find();};
Fulbito {{#if cantidad_jugadores}} ({{cantidad_jugadores}} Jugadores) {{/if}}
<template name="clients">{{ #each clientList }}{{ name }}{{ /each }}</template>