# Meteor [![TravisCI Status](https://travis-ci.org/meteor/meteor.svg?branch=devel)](https://travis-ci.org/meteor/meteor) [![CircleCI Status](https://circleci.com/gh/meteor/meteor/tree/devel.svg?style=shield&circle-token=c2d3c041506bd493ef3795ffa4448684cfce97b8)](https://circleci.com/gh/meteor/meteor/tree/devel) [![BrowserStack Status](https://www.browserstack.com/automate/badge.svg?badge_key=S2FjOVpYTlk1eHVxdkdrR24ra0JXaXBDaVA3WjJGejdkbThaWGRnWVJvWT0tLTlQMEdYM2NJbDJOYUd3RTc3RVVGQ2c9PQ==--9e2143718a0c216274cdacef7cd5a3d12950bcb8)](https://www.browserstack.com/automate/public-build/S2FjOVpYTlk1eHVxdkdrR24ra0JXaXBDaVA3WjJGejdkbThaWGRnWVJvWT0tLTlQMEdYM2NJbDJOYUd3RTc3RVVGQ2c9PQ==--9e2143718a0c216274cdacef7cd5a3d12950bcb8) Meteor is an ultra-simple environment for building modern web applications. With Meteor you write apps: * in modern JavaScript * that send data over the wire, rather than HTML * using your choice of popular open-source libraries Try a getting started tutorial: * [React](https://www.meteor.com/tutorials/react/creating-an-app) * [Blaze](https://www.meteor.com/tutorials/blaze/creating-an-app) * [Angular](https://www.meteor.com/tutorials/angular/creating-an-app) Next, read the [guide](https://guide.meteor.com) and the [documentation](https://docs.meteor.com/). ## Quick Start On Windows, the installer can be found at https://www.meteor.com/install. On Linux/macOS, use this line: ```bash curl https://install.meteor.com/ | sh ``` Create a project: ```bash meteor create try-meteor ``` Run it: ```bash cd try-meteor meteor ``` ## Developer Resources Building an application with Meteor? * Announcement list: sign up at http://www.meteor.com/ * Having problems? Ask for help at: http://stackoverflow.com/questions/tagged/meteor * Discussion forums: https://forums.meteor.com/ Interested in helping or contributing to Meteor? These resources will help: * [Core development guide](DEVELOPMENT.md) * [Contribution guidelines](CONTRIBUTING.md) * [Feature requests](https://github.com/meteor/meteor-feature-requests/) * [Issue tracker](https://github.com/meteor/meteor/issues) We are hiring! Visit [meteor.io/jobs](https://www.meteor.io/jobs/) to learn more about working full-time on the Meteor project. ## Uninstalling Meteor Aside from a short launcher shell script, Meteor installs itself inside your home directory. To uninstall Meteor, run: ```bash rm -rf ~/.meteor/ sudo rm /usr/local/bin/meteor ``` On Windows, just run the uninstaller from your Control Panel.