Monday, September 17, 2018

Retrieve Instagram profile information using oAuth 2.0 using Instagram API



Early days to collect protected user information for any third party service, had to provide the user's account credentials in an account that has information or has to enter the information again. But this is not a secure method. As a solution to this problem oAuth protocol was introduced in 2006.

Wednesday, September 12, 2018

How to prevent Cross-Site Request Forgery (CSRF)



This blog post will discuss what is Cross-Site Request Forgery (CSRF) and how to prevent CSRF using synchronizer token pattern and Double submit token pattern.

Tuesday, May 9, 2017

Angular JS

AngularJS is a very powerful JavaScript Framework. It is used in Single Page Application (SPA) projects. It extends HTML DOM with additional attributes and makes it more responsive to user actions. AngularJS is open source, completely free, and used by thousands of developers around the world. AngularJS version 1.0 was released in 2012 by Miško Hevery.AngularJS is a JavaScript framework.
It can be added to an HTML page with a <script> tag.

Monday, May 1, 2017

MongoDB


MongoDB is an open source document based non relational database.It's the most popular non-relational database. It's an object relational database.Uses spider Monkey java script engine.

Saturday, April 15, 2017

Java Script class

Java script classes introduced in ECMA SCRIPT 2015.In ECMA Script 5.1,it is not allowing for class keyword but in ECMA 6 it introduces the class keyword for creating classes in java scripts. Java script classes are using prototype based inheritance.In this post, I'm using ECMA 6 to demonstrate classes.Defining a class.

Saturday, April 8, 2017

JavaScript Protoypes

Prototype is a fundamental concept that every java-script developer should understand. Every java script object has a Prototype and Prototype is also a object.All java-script objects inherit their properties and methods from prototype.by default prototype property is empty for every function.

Saturday, April 1, 2017

Introduction to Node JS

Node JS is created by Ryan Dahl with the aim of creating real-time websites with push capabilities.It is an open soure, cross platform runtime environment for server-side and networking applications.

Tuesday, March 21, 2017

characteristics of java scrpts




  • Single Threaded
  • Non-blocking IO
  • Asynchronous
  • Dynamically typed
  • Multi paradigm
  • Event driven

What is Asynchronous ?


Sunday, March 12, 2017

Introduction to javascripts



Java scripts are used for front end development in web sites. It used to control web pages both client side and server side and it support for OOP(Object oriented programming) and object oriented programming.