add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

28
pages.zh/common/meteor.md Normal file
View File

@@ -0,0 +1,28 @@
# 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}}`