Question - What is SPA(Single Page Application)? Contrast SPA technology with traditional web technology.
Answer -
With SPA technology, only a single page - index.HTML - is maintained, although the URL keeps on changing. SPA technology is faster and easier to develop than traditional web technology.
In conventional web technology, as soon as a client requests a web page, the server sends the resource. However, when again the client requests for another page, the server responds again with sending the requested resource. The problem with this technology is that it requires a lot of time.