Files
tldr/pages.zh/common/meteor.md

28 lines
549 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Meteor
> 用于构建 Web 应用程序的全栈 JavaScript 平台。
> 更多信息:<https://meteor.com>。
- 在开发模式下从项目根目录运行 Meteor 项目:
`meteor`
- 在给定目录下创建一个项目:
`meteor create {{path/to/directory}}`
- 显示项目当前使用的包列表:
`meteor list`
- 向项目添加一个包:
`meteor add {{package}}`
- 从项目中移除一个包:
`meteor remove {{package}}`
- 在给定目录下创建项目的生产构建作为 tarball
`meteor build {{path/to/directory}}`