Angular + Python Flask REST API MongoDB CRUD Example

Introduction In this post we will see Angualr + Python Flask REST API MongoDB CRUD Example. We will use our existing tutorial on Python Flask REST API MongoDB CRUD Example for server side and we will introduce Angular on UI or front end side. You can also use any UI technologies, such as React JS, HTML, JavaScript, jQuery etc., for front end…

Download File From Server Using Angular

Table of Contents Introduction Prerequisites Install Modules Project Setup Service Class Controller Class View File Register HttpModule/HttpClientModule Prerequisites Prerequisites Prerequisites Prerequisites Testing the APplication Source Code Download File – Angular In this post I am going to show you how to download file from server using Angular framework. Angular is a UI (user Interface) framework for building rapid application development….

Download File Using Angular And Spring Boot REST

Download File – Spring Boot REST API In this post I will show you how to download file using Angular framework and Spring Boot. There are situations when you need to download file from server or you need to generate report from database and download it. This example may help you in such situation. I will build the Spring Boot…

Angular + Spring Boot file upload example

Introduction Here we will see how to upload file using Angular and Spring Boot application. The Angular + Spring Boot file upload example will use the Angular example from and we will see here how to write server side code for Spring Boot application. We will also exclude the default server Tomcat and include the Jetty server for our Spring…

File Upload Example using Angular

Introduction In this tutorial we will see file upload example using Angular. This is a UI side coding example using Angular. It will not upload file definitely but you need to use server side programming to actually upload the file. Prerequisites Knowledge of Angular Please read tutorial Create new Angular project on Windows before proceeding further.

Spring Boot + Angular Functional Reactive Programming Example

Introduction This tutorial is about Spring Boot + Angular Functional Reactive Programming Example that will show you how you will create REST APIs using Spring Boot Functional Reactive Programming and consume these server side REST APIs using Angular Reactive Programming. We have seen in our example on Spring Boot Functional Reactive Programming, which you must go through first in order…

Python REST APIs + Flask + Angular CRUD Example

Flask Angular CRUD Here you will see Python REST APIs + Flask + Angular CRUD Example. I will use the existing tutorial on Python REST API CRUD Example using Flask and MySQL for server side and I will introduce Angular on UI (user Interface) or front-end side. So go through the mentioned tutorial before proceeding further down. Recommended reading: Python web application CRUD…

Create New Angular Project on Windows

Angular Here you will see how to install new Angular framework or update/upgrade the existing Angular version and how to create new Angular project on Windows environment. Related Post: I will use node.js and npm for setting up the new Angular project on Windows environment. If you are using different Operating System then you have to check the installation process…

WebSocket Using Spring Boot And Angular

Web Socket Web Socket is a very thin, lightweight layer above TCP used to build interactive web applications that send messages back and forth between a browser and the server. The best examples are live updates websites, where once user access the website neither user nor browser sends request to the server to get the latest updates. Server only keeps…

AngularJS Codeigniter REST CRUD Example

In this Codeigniter AngularJS CRUD example, we will see the integration of AngularJS with Codeigniter REST. We are going to create CRUD application using Codeigniter REST API on server side and AngularJS is encapsulated within PHP file on client side. Thus the client will communicate with server asynchronously using AngularJS $http service. Please read the following tutorials before reading this…