Posts

Showing posts with the label Web Development

Create a Mobile app using Angular and Cordova

Image
This will be a step by step guide for converting an angular project to an android application by using Cordova (The process will be quiet similar for creating IOS apps). Before we start converting our application we need to install Cordova, Java SDK, Apache Ant, Gradle, and Android SDK for running our android application. If you have already done all the required setup you can skip this section. Note:  You don’t need to enter ‘$’ in front of every command, it indicates that you have to enter the command in your terminal. Installing Cordova: You will need NPM(Node Package Manager) to install Cordova Package. $ sudo apt-get update $ sudo apt-get install curl $ curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - $ sudo apt-get install nodejs $ nodejs -v $ sudo apt-get install npm $ npm -v 2. You also need GIT, as it is used by Cordova behind the scenes. $ sudo apt-get install git $ git --version 3. Installing Cordova $ sudo npm instal...

Web Services in Python

Image
Web Services in Python Table of content Web Service REST and SOAP (Definition,Difference,usage) Why we use Web service GET and POST (Definition,Difference) A sample Python Flask Application What is Postman JSON XML Image Video Streaming Web Services In programming, generally refers to a web page, that can be called from an application (be it another web page, or desktop app), and the caller will pass in data to it, or receive data from it.It’s basically like a ‘method’ or ‘function’ in a normal programming language; except you’re calling it over the internet Definations A Web service is a software system designed to support interoperable machine-to-machine interaction over a network. The term  Web services  describes a standardized way of integrating Web-based Application using the XML, SOAP, Wsdl and UDDIopen Standard over an Internet protocol Back. What is REST Everything in REST is considered as a resource. Every resource is i...

Popular posts from this blog

How to Secure Session Management in Node

Angular 9 - User Registration and Login Example & Tutorial

How to download a file using command prompt (cmd) Windows?