{{#template name="quickStart"}} ## Quick start! The following works on all [supported platforms](https://github.com/meteor/meteor/wiki/Supported-Platforms). Install Meteor: ```bash $ curl https://install.meteor.com | /bin/sh ``` Create a project: ```bash $ meteor create myapp ``` Run it locally: ```bash $ cd myapp $ meteor # Meteor server running on: http://localhost:3000/ ``` Unleash it on the world (on a free server we provide): ```bash $ meteor deploy myapp.meteor.com ``` {{/template}}