如何安装没有陨石的大气包?

the*_*ero 9 meteor meteorite

mrt目前在Mac上的卷名称中有空格错误https://github.com/oortcloud/meteorite/issues/172.

在修复之前,如何从大气中手动安装包?

Aks*_*hat 15

您可以创建/packages项目中调用的目录,然后手动安装每个包及其依赖项.例如'meteor router'

/packages

git clone https://github.com/tmeasday/meteor-router.git
mv meteor-router router

git clone --recursive https://github.com/tmeasday/meteor-page-js-ie-support.git
mv meteor-page-js-ie-support page-js-ie-support
Run Code Online (Sandbox Code Playgroud)

第二个是对流星路由器的依赖,你可以在包的大气页面上看到它.它是递归的,以确保子模块pages-js也是git克隆的.

流星0.65+

正如thejuan所指出的:一旦你这样做,你只需要将主要的一个添加到你的项目中.您不必添加依赖项.

meteor add router
Run Code Online (Sandbox Code Playgroud)