Posts

Showing posts from March, 2017

Angular JS Introduction

Image
Angular JS Today I'm going to give introduction to world's most popular web framework Angular JS. Actually its complete client side framework. Where it can design UI, client side programming, Connecting with Server with http services. So this is very important JavaScript based framework. And also it is developed by Google. As to date which i'm writing this blog, There is a new version of Angular JS named Angular 2. Its based on TypeScript which a supertype of JavaScript where developed by Microsoft. However, I will focus on angular JS 1.x Lets get into angular JS. Angular JS is stick in MVC (Model View Controler) architecture. That is one of reason to becoming it's popularity. So, In angular JS, There are 3 main parts. Module Views Controlers Module Just forget about angular Js and think about module In MVC architecture. Its represent an entity, a database. So the concept is data handling. Thats the thing doing in Angular JS too. In html forms like things, there are som

Restfull Services

So, Today I going to explain about RESTfull services. First we take a look about what is REST. REST What is REST? In long term, Representational State Transfer. REST is an architectural style and its used by all of modern web applications. we use REST for create more lightweight, scalable and maintainable web applications. Its based on resources such as multimedia items, documents and information etc.      URL      Resources are uniquely identified by a URL (Unique Resource Identifier)      ex.           https://www.w3schools.com/css/img_fjords.jpg           by this URL, we locate (expose) "img_fjords.jpg" for any one in internet. so that             resource is uiquely identified by that url.                 NOTE: There can be many URL for single resource We use JSON or XML to pass data between server and client. RESTfull Services  Up to now, we have got some idea about what is REST. Lets begin with our main topic.  In simple word, RESTfull service is a service based on REST