Tag Archives: JavaScript

  • 0

All about Application Stack

Tags : 

The concept of the application stack is mainly a combination of programming languages, tools and frameworks that are being used by the developers so that he could create web and mobile applications. It includes two main components to any application which are known as client side and server side also called as front end and back end.

A stack is created by building one layer of applications atop the other through the codes and hardware modules ranging from generic to specific. It contains different layers of components and servers that can use by developers for building the software applications and solutions.

Anatomy of applications stack: As we know that tech stack comes with the two software components which are front end and back end.

Front End (Client Side): As its name suggests that it is where the real interaction with the user happens. In this, the user will interact with the website or the web app or mobile app depending what he is using.

Front end includes three main technologies:
• HTML – It is markup language
• CSS – The style sheet
• JavaScript – it is browser scripting language

The biggest advantage of these frameworks is that they give us the opportunity to create high intuitive user interfaces. The both are languages are independent and the type of stack does not matter which we are using for the server side, it will still function automatically as per our expectations.

Backend (Server Side): This consists a server along with an application and database. Server side is the umbrella term which is used by the developers to perform the following functions for the websites such as programming the business logic and working with databases etc.

This server side stack is able to respond to user requests as well as accesses the databases and executive simple create, read, update and delete operations. The most popular backend stacks which are used by the developers are LAMP and Python.

Middleware: This concept is little bit more esoteric and also consists application servers, content managements systems as well as web servers and similar tools that are supporting app development and delivery. It facilitates standard communication and management of data between the front end and back end of tech stack.


  • 0
Learning Functional Programming in JavaScript

Learning Functional Programming in JavaScript

Tags : 

Disregard whatever you ponder JavaScript, and approach this material with a fledgling’s brain. To enable you to do that, we will survey the JavaScript nuts and bolts from the beginning, as though you’ve never observed JavaScript. In case you’re a tenderfoot, you’re in good fortune. At long last something investigating ES6 and useful programming starting with no outside help! Ideally, all the new ideas are clarified along the way — but don’t rely on an excess of spoiling.

In case you’re a prepared engineer officially comfortable with JavaScript, or an unadulterated utilitarian dialect, possibly you believe that JavaScript is a clever decision for an investigation of useful programming. Put those contemplations aside, and endeavor to approach the material with a receptive outlook. You may find that there is another level of JavaScript programming. One you never knew existed.

Since this content is called “Forming Software”, and practical writing computer programs is the undeniable method to create programming (utilizing capacity organization, higher request capacities, and so on, you might ask why I’m not discussing Haskell, ClojureScript, or Elm, rather than JavaScript.

JavaScript has the most vital highlights required for useful programming:

1. The first class works:
The capacity to utilize works as information esteems: pass works as contentions, return works, and appoint capacities to factors and protest properties. This property takes into account higher request capacities, which empower fractional application, currying, and organization.

2. Anonymous capacities and compact lambda language structure: x => x * 2 is a substantial capacity articulation in JavaScript. Succinct lambdas make it simpler to work with higher-arrange capacities.

3. Closures: A conclusion is the packaging of a capacity with its lexical condition. Terminations are made at work creation time. At the point when a capacity is characterized inside another capacity, it approaches the variable ties in the external capacity, even after the external capacity exists. Terminations are the way fractional applications get their settled contentions. A settled contention is a contention bound in the conclusion extent of a returned work. Add 2 (1) (2), 1 is a settled contention in the capacity returned by add 2 (1).