I love the benefits on single-page web apps, but the SEO issues associated with them and the current methods to get around it (using selenium to do a render of the html on the server?!?) keeps me from using them on things. It seems to me that by using node.js on the server, we should be able to share the application code, including rendering to html/dom. I have a vision in my mind of an http request coming in to the…
I'm not very familiar with Node, but I had assumed that a more flexible or movable client/server dividing line was the point of Node, and assumed it's what people were already doing... but maybe not. Can any Node afficianados speak to this question?
Server-side HTML vs. JS Widgets vs. Single-Page Web Apps
21–26 of 26 posts
Re: Server-side HTML vs. JS Widgets vs. Single-Page Web Apps
#22I love the benefits on single-page web apps, but the SEO issues associated with them and the current methods to get around it (using selenium to do a render of the html on the server?!?) keeps me from using them on things. It seems to me that by using node.js on the server, we should be able to share the application code, including rendering to html/dom. I have a vision in my mind of an http request coming in to the…
AFAIK this is solved in Derby.js; it serves fully-rendered HTML to the client and JS kicks in after that.
Re: Server-side HTML vs. JS Widgets vs. Single-Page Web Apps
#23Very nice discussion and slides, the videos added a lot. My favorite approach is somewhat in the middle. You might call it an "MSPA" - Multiple Single Page Apps, each major section in the app is it's own standalone SPA. (public searchable pages are plain HTML e.g. using Jekyll). For example, if I have an admin section with master detail scenario, this would consist of a single SPA, And an "account" section with setti…
Re: Server-side HTML vs. JS Widgets vs. Single-Page Web Apps
#24It is pretty disappointing that these comparisons always seem to consider the server side template case as "we did it in the most horrible way possible, I know all the issues we had were solved long ago and we could do it right, but lets pretend that isn't possible because I want an excuse to do everything in javascript".
Re: Server-side HTML vs. JS Widgets vs. Single-Page Web Apps
#25Earlier quoted context omitted.
Yep, you can see some of it here; http://qbix.com/blog http://framework.qbix.com we are working on rolling out a much better framework portal for it though.
I can't see too much on the second link. What's the point if it is password protected and you don't give it away?
Re: Server-side HTML vs. JS Widgets vs. Single-Page Web Apps
#26Pardon my shameless plug, but I've been working on something for a looong time that combines all of the above into one massive time-saving system. The hardest part is definitely making it fast and efficient while also being user friendly. If you take a look at the trends of the web over the past decade, I really think this (or something like it) is the future of web application development. Long story short, you can…
"I would have released it months ago but decided to rewrite nearly everything" Recipy for disaster. Release early, release often. Is this b.t.w. a one-man project? Big code bases written by one man which doesn't get out to the public early is a risky undertaking. However I really admire your passion/enthousiasm.