Meteor 0.8.0, Iron Router and Discover Meteor

Meteor 0.8.0 comes with the new Blaze rendering, which is great for the future.

Currently I can not start the application with the Iron Router mobile device: updated -> ran meteor -> white browser. I think I will return to 0.7.2. but it gives me a fuzzy feeling. It looks like a new computer without an internet connection. Is there any fix for these changes? At least for the Iron Router?

Note Comment (although it was in the title): I study a meteorite using the Discover Meteor book, this is a great book written by the same author Iron Router; I love it. However, if a meteorite changes, what am I wasting my time with?

Update @iAmME Solution Works Great! I solved this in another way, which also captured the progress of the iron router by modifying smartpackage. I just wanted to publish it if it helps someone:

{
  "packages": {

      "blaze-layout": {},

      "iron-router":
      {
          "git": "https://github.com/EventedMind/iron-router.git",
          "branch": "blaze-integration"
      },

      "iron-router-progress":
      {
          "git": "https://github.com/Multiply/iron-router-progress.git",
          "branch": "blaze-integration"
      }

  }
}
+2
source share
2 answers

Just ran into the same problem

Did the following and works great

It occurs mainly due to the iron-router package and several other packages that use sparkas dependencies and reinstall the iron router first, as shown below

meteor remove iron-router
rm -rf packages/iron-router
mrt update
mrt add iron-router

, blaze-Layout - ( ).

iron-router, spark , , spark, .

+10

-. , 0.7.0, gihub Iron Router https://github.com/EventedMind/iron-router. Meteor 0.8.0.

0

Source: https://habr.com/ru/post/1533889/


All Articles