2016-07-28 01:41:46 +05:30
|
|
|
# meteor
|
|
|
|
|
2021-05-20 16:13:41 -04:00
|
|
|
> Full-stack JavaScript platform for building web applications.
|
2019-06-04 10:25:09 +01:00
|
|
|
> More information: <https://meteor.com>.
|
2016-07-28 01:41:46 +05:30
|
|
|
|
|
|
|
- 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:
|
|
|
|
|
2023-08-26 23:00:06 +05:30
|
|
|
`meteor add {{package}}`
|
2016-07-28 01:41:46 +05:30
|
|
|
|
|
|
|
- Remove a package from the project:
|
|
|
|
|
2023-08-26 23:00:06 +05:30
|
|
|
`meteor remove {{package}}`
|
2016-07-28 01:41:46 +05:30
|
|
|
|
|
|
|
- Create a production build of the project as a tarball under the given directory:
|
|
|
|
|
|
|
|
`meteor build {{path/to/directory}}`
|