how do I install a previous version of meteor JS?

前端 未结 5 1512
死守一世寂寞
死守一世寂寞 2020-12-14 02:20

I\'m trying to host a meteor app that uses an old version of meteor. Every time i try to start the app it will get somewhat through the process of installing the tool, and t

5条回答
  •  执笔经年
    2020-12-14 02:43

    When you create a meteor app you can specify a release:

    meteor create test --release x.y.z
    

    And when you update a meteor app you can do the same:

    meteor update --release x.y.z
    

提交回复
热议问题