2016-07-27 21:11:46 +01:00
|
|
|
# meteor
|
|
|
|
|
2021-05-20 21:13:41 +01:00
|
|
|
> Full-stack JavaScript platform for building web applications.
|
2019-06-04 10:25:09 +01:00
|
|
|
> More information: <https://meteor.com>.
|
2016-07-27 21:11:46 +01:00
|
|
|
|
|
|
|
- Run a meteor project from its root directory in development mode:
|
|
|
|
|
|
|
|
`meteor`
|
|
|
|
|
|
|
|
- Create a project under the given directory:
|
|
|
|
|
|
|
|
`meteor create {{path/to/directory}}`
|
|
|
|
|
|
|
|
- Display the list of packages the project is currently using:
|
|
|
|
|
|
|
|
`meteor list`
|
|
|
|
|
|
|
|
- Add a package to the project:
|
|
|
|
|
|
|
|
`meteor add {{package_name}}`
|
|
|
|
|
|
|
|
- Remove a package from the project:
|
|
|
|
|
|
|
|
`meteor remove {{package_name}}`
|
|
|
|
|
|
|
|
- Create a production build of the project as a tarball under the given directory:
|
|
|
|
|
|
|
|
`meteor build {{path/to/directory}}`
|