Skip to content Skip to sidebar Skip to footer

How To Make Component-based Single Page Web Application?

This is probably a very vague question. Suppose I have a single-page web application, which uses AJAX to communicate with REST services in the server. It consists of one monolithic

Solution 1:

I suggest starting your research on building single page js apps by looking at the Todo MVC projects.

https://github.com/addyosmani/todomvc

From the URL above

To help solve this problem, we created TodoMVC - a project which offers the same Todo application implemented using MV* concepts in most of the popular JavaScript MV* frameworks of today.

So, this will show how the same project's built with different libs and you can try one or more out and see what best works for you.

Post a Comment for "How To Make Component-based Single Page Web Application?"