try_dart
2016-02-09 11:01:52 UTC
Hi Devs!
Thanks & hope you continue to do the great work you have been doing.
A version of our UI is in Dart, and it works great. But the problem is
search engine crawlers. Google webmaster tools claim that they handle
Javascript, and they do it quite well, I believe. But in practice it means
slower page loads, including timeouts. This is mainly because of increased
no. of requests, coupled with running the JS init()/start() code, then more
calls to get data, and then the DOM gets created.
Which makes it ineffective for use in SEO, and one is forced to fall back
to another version of static HTML (also implies dated) for SEO.
Recently, I came to know about this trend of ispmorphic web apps, which
work great with all the latest/cool JS in the browser, as well as takes
care of server side generation of HTML, which is achieved primarily by
calling functions like for e.g. React.renderToString() on a given
domElement, in React, . This way, it results in much faster page load as
well.
So the question is: Is there an equivalent of this function in Dart? If
not, are there any plans to add it? IMHO, this may be a feature requited by
lot others, as well.
Sincerely,
Thanks & hope you continue to do the great work you have been doing.
A version of our UI is in Dart, and it works great. But the problem is
search engine crawlers. Google webmaster tools claim that they handle
Javascript, and they do it quite well, I believe. But in practice it means
slower page loads, including timeouts. This is mainly because of increased
no. of requests, coupled with running the JS init()/start() code, then more
calls to get data, and then the DOM gets created.
Which makes it ineffective for use in SEO, and one is forced to fall back
to another version of static HTML (also implies dated) for SEO.
Recently, I came to know about this trend of ispmorphic web apps, which
work great with all the latest/cool JS in the browser, as well as takes
care of server side generation of HTML, which is achieved primarily by
calling functions like for e.g. React.renderToString() on a given
domElement, in React, . This way, it results in much faster page load as
well.
So the question is: Is there an equivalent of this function in Dart? If
not, are there any plans to add it? IMHO, this may be a feature requited by
lot others, as well.
Sincerely,
--
For other discussions, see https://groups.google.com/a/dartlang.org/
For HOWTO questions, visit http://stackoverflow.com/tags/dart
To file a bug report or feature request, go to http://www.dartbug.com/new
---
You received this message because you are subscribed to the Google Groups "Dart Misc" group.
To unsubscribe from this group and stop receiving emails from it, send an email to misc+***@dartlang.org.
For other discussions, see https://groups.google.com/a/dartlang.org/
For HOWTO questions, visit http://stackoverflow.com/tags/dart
To file a bug report or feature request, go to http://www.dartbug.com/new
---
You received this message because you are subscribed to the Google Groups "Dart Misc" group.
To unsubscribe from this group and stop receiving emails from it, send an email to misc+***@dartlang.org.