
meteor
List of commands for meteor:
-
meteor:tldr:2960b meteor: Display the list of packages the project is currently using.$ meteor listtry on your machineexplain this command
-
meteor:tldr:4c89b meteor: Remove a package from the project.$ meteor remove ${package_name}try on your machineexplain this command
-
meteor:tldr:4d9f0 meteor: Create a production build of the project as a tarball under the given directory.$ meteor build ${path-to-directory}try on your machineexplain this command
-
meteor:tldr:8f6b9 meteor: Run a meteor project from its root directory in development mode.$ meteortry on your machineexplain this command
-
meteor:tldr:b13fa meteor: Add a package to the project.$ meteor add ${package_name}try on your machineexplain this command
-
meteor:tldr:c45c2 meteor: Create a project under the given directory.$ meteor create ${path-to-directory}try on your machineexplain this command