Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
Meteor, the JavaScript App Platform
Branch: devel
Clone or download
lpinca and benjamn Fix variable scope (#10526)
Currenlty the `v` variable is only visible in the `if` block but it is
also used in the outer scope. Move the declaration to the outer scope.
Latest commit efc8a35 Apr 26, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.circleci Update meteor/circleci Docker image to Android API v27. Jan 31, 2019
.github Update ISSUE_TEMPLATE.md Nov 16, 2017
LICENSES Add PhantomJS option back in Apr 19, 2018
examples Modernize and fix accounts-ui-viewer app Feb 1, 2018
packages Fix variable scope (#10526) Apr 26, 2019
scripts Bump package versions for the official 1.8.1 release. Apr 2, 2019
tools Update dynamic import test app to Meteor 1.8.1 and meteor-node-stubs@… Apr 10, 2019
.eslintignore Removes Velocity testing code Jun 16, 2016
.gitignore Add temporary `dev_bundle_XXX` directory to .gitignore Sep 12, 2017
.gitmodules Move packages-for-isopackets/blaze to packages/non-core/blaze. Sep 9, 2016
.mailmap Clarify what .mailmap is in comments Jul 31, 2015
.travis.yml Retain PhantomJS for Console Tests May 1, 2018
CODE_OF_CONDUCT.md Adjust policy doc filenames to use capital snake case Oct 11, 2017
CONTRIBUTING.md Update CONTRIBUTING.md, adding @zodern as a collaborator. (#10485) Mar 13, 2019
DEVELOPMENT.md Merge branch 'devel' into release-1.6 Oct 12, 2017
History.md Update History.md before final Meteor 1.8.1 release. Apr 2, 2019
ISSUE_TRIAGE.md Document new bug triage timelines (#9691) Feb 26, 2018
IssueTriageFlow.png More work on IssueTriage May 3, 2016
LICENSE Update license range for 2018 🎉 (#9523) Jan 10, 2018
README.md Correct link in markdown badge. Nov 22, 2017
Roadmap.md Update Roadmap.md (#10254) Oct 9, 2018
appveyor.yml Add a self-test skip option (#9579) Jan 29, 2018
meteor Bump $BUNDLE_VERSION to 8.15.1.1 before rebuilding dev bundle. Mar 19, 2019
meteor.bat Remove the --max-old-space-size option to node.exe in meteor.bat. Apr 6, 2018

README.md

Meteor

TravisCI Status CircleCI Status BrowserStack Status

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 Windows, the installer can be found at https://www.meteor.com/install.

On Linux/macOS, use this line:

curl https://install.meteor.com/ | sh

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:

We are hiring! Visit 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:

rm -rf ~/.meteor/
sudo rm /usr/local/bin/meteor

On Windows, just run the uninstaller from your Control Panel.

You can’t perform that action at this time.