Meteor
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:
Next, read the guide and the documentation.
Quick Start
On Linux/macOS, install Meteor using:
curl https://install.meteor.com/ | sh
On Windows, first install Chocolatey, then run the following from using an admin command prompt:
choco install meteor
Create a project:
meteor create try-meteor
Run it:
cd try-meteor
meteor
Developer Resources
Building an application with Meteor?
Interested in helping or contributing to Meteor? These resources will help:
Uninstalling Meteor
Aside from a short launcher shell script, Meteor installs itself inside your home directory. To uninstall Meteor, run:
rm -rf ~/.meteor/
sudo rm /usr/local/bin/meteor
On Windows, follow Chocolatey's application uninstall process.