Did meteor ever fix the big startup delay that makes your app look like a blank screen for 5 seconds when you first browse to it?
Not sure, but you can time how long it takes to load their site: http://www.meteor.com/ It uses Meteor itself so the framework is sent down the wire and rendered client-side like any other Meteor app.
Using Meteor as a front-end library
11–14 of 14 posts
Re: Using Meteor as a front-end library
#12Earlier quoted context omitted.
Not sure, but you can time how long it takes to load their site: http://www.meteor.com/ It uses Meteor itself so the framework is sent down the wire and rendered client-side like any other Meteor app.
That is a static page.
If you're having trouble with this, see this guide: http://webdesign.about.com/od/chrome/a/view-source-chrome.ht... as an example.
Once you see the HTML source, scroll to the area where the body tag is found. You'll notice the lack of any static content:
Or did you mean something else by static page?Re: Using Meteor as a front-end library
#13Earlier quoted context omitted.
That is a static page.
It's built using Meteor, and the page is constructed on the client. You can determine this by right-clicking the page, and selecting "View Source" in most browsers. If you're having trouble with this, see this guide: http://webdesign.about.com/od/chrome/a/view-source-chrome.ht... as an example. Once you see the HTML source, scroll to the area where the body tag is found. You'll notice the lack of any static content:…
Odd way to go about hosting a static page. :0)
Re: Using Meteor as a front-end library
#14Earlier quoted context omitted.
It's built using Meteor, and the page is constructed on the client. You can determine this by right-clicking the page, and selecting "View Source" in most browsers. If you're having trouble with this, see this guide: http://webdesign.about.com/od/chrome/a/view-source-chrome.ht... as an example. Once you see the HTML source, scroll to the area where the body tag is found. You'll notice the lack of any static content:…
I know how to view-source, thankyouverymuch. All I saw in my network panel is calls to analytics scripts, it appears I was mistaken. (Unlike a simple view-source, the inspector shows the rendered DOM) Odd way to go about hosting a static page. :0)