Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

Development

Tsegaselassie Tadesse edited this page Jan 26, 2016 · 3 revisions

This section of the wiki provides instruction on how to setup your system for development using the Meteor platform.

Setup

Git

The first piece of software to install on any "modern" development machine is Git.

Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.

To install git on your system go to the official download page or consult any online documentation for your specific Operating System.

Meteor

The second set is to install Meteor itself, on *nix system (OS X or Linux) simply run the following command in your terminal and you will have Meteor installed; the entire stack!

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

For a Windows, you can download the official Meteor installer.

IDE/Text Editor

Once you have Meteor installed, the next most important software to install is your editor/IDE. This of course is one the most popular discussions in the Meteor community but for the purposes of being breif; I recommend the following IDE's / Editors:

  • Webstorm: most powerful IDE for Meteor or any modern JavaScript based framework.
  • Atom: A hackable test editor that is slick, highly configurable, light weight and open source; fit for different uses. My personal preference for almost anything now.
  • Sublime Text: One of the most popular text editors in the development world, on which Atom.io is based. It's not open source and that just might be its downfall.
  • VIM: Minimal but powerful text editor that has been around for ages.

Packages

Meteor's packaging system allows the seamless addition of extra functionality to the already rich application building platform. The following list of packages have been used in building the system.

Additional Meteor Resources

Clone this wiki locally