LinuxCommandLibrary

meteor

meteor

TLDR

Run a meteor project from its root directory in development mode

$ meteor
copy


Create a project under the given directory
$ meteor create [path/to/directory]
copy


Display the list of packages the project is currently using
$ meteor list
copy


Add a package to the project
$ meteor add [package]
copy


Remove a package from the project
$ meteor remove [package]
copy


Create a production build of the project as a tarball under the given directory
$ meteor build [path/to/directory]
copy

Copied to clipboard