Tag: Bootstrap

  • Single Page Web App using AngularJs Routing

    In traditional web apps, server would process the data, generate HTML and clients would just render the html and run some sprinkled javascript in the page. With client systems (phones, computers) getting more powerful it is now possible to push more processing to clients. Single Page Apps take benefit of this phenomenon. As name suggests,…

  • Single Page Web App Using Angular and Bootstrap

    Recently, I developed single page web app using Angular.js, Bootstrap, JavaScript and HTML. In this Product List app we can add, delete and display particular thing. Let’s Get Coding First we start by creating ‘app.js‘. This is where JavaScript code will go. In this file create the angular module and controller. Write a code to…