meteor
TLDR
Create new project
$ meteor create [project-name]
Run development server$ meteor
Add package$ meteor add [package-name]
Remove package$ meteor remove [package-name]
Build for production$ meteor build [output-dir]
Deploy to Galaxy$ meteor deploy [app.meteorapp.com]
SYNOPSIS
meteor [command] [options]
DESCRIPTION
meteor is a full-stack JavaScript framework. It builds web and mobile apps with reactive data.
The tool provides real-time updates, hot code push, and integrated build system.
meteor builds reactive apps.
PARAMETERS
COMMAND
Meteor command.create NAME
Create new project.add PKG
Add package.remove PKG
Remove package.build DIR
Build for production.deploy HOST
Deploy application.--help
Display help information.
CAVEATS
Node.js based. MongoDB default. Learning curve for reactivity.
HISTORY
Meteor was created by Meteor Development Group in 2012 as a real-time web application platform.


