LinuxCommandLibrary

meteor

TLDR

Create new project

$ meteor create [project-name]
copy
Run development server
$ meteor
copy
Add package
$ meteor add [package-name]
copy
Remove package
$ meteor remove [package-name]
copy
Build for production
$ meteor build [output-dir]
copy
Deploy to Galaxy
$ meteor deploy [app.meteorapp.com]
copy

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.

SEE ALSO

node(1), npm(1), mongod(1)

Copied to clipboard