What is a SPA? Single Page Applications (SPAs) are applications that use one webpage for all their features. In the past, websites typically loaded new pages for each new request or link within the domain name. For example, there would be an HTML page for: / /about /contact /blog /blog/1 Individual HTML pages could be found …
single page application
How To Use an API with Vue.js
The web is progressing fast with new technologies and libraries emerging every few months. Vue.js is one of the Javascript frameworks gaining immense popularity over the last few years. Initially launched in 2014, it derives inspiration from Angular but is very lightweight and ideal for building single-page web applications. In this blog post, …
How to Build a Single-Page Application (SPA) with Vue.JS (and APIs)
If you are building a web application with the API-first approach, then you have to think of leveraging external APIs to execute part of your application logic. Single-page applications are a perfect candidate for building such Apps. These Apps allow the web browser to re-render different parts of the web page dynamically, by invoking APIs. These …
Leveraging a proxy application to satisfy APIKEY request requirement for Single Page Application development
Often times APIs are secured with a unique APIKEY for each application. The requirement of these APIs is you send your APIKEY with every request either through the query string or in a custom header. But when your application is a single page application (SPA) you cannot embed your APIKEY into your application because it is not a secure way to …