What is ES6?. It is short form of ECMA (European Computers Manufacturers Association) Script 6. ES6 is the 6th edition which was released in 2015. Please check the browser compatibility before using any of ES6 features. Let us concentrate on the aim of this post, which is to see what’s new in javascript and how … Continue reading “ES6 New feature to begin with-Javascript”
Less in Simple Terms
Less is an extension to normal CSS. Its not only backward compatible with CSS, it allows us to use existing CSS syntax. This makes learning Less an easy task and if we ever find difficulty it lets you fall back to vanilla CSS. Less allows variables, mixins, functions and many other techniques that allow you … Continue reading “Less in Simple Terms”
Web-Workers
A web worker is a JavaScript that runs in the background. Independent of other scripts, without affecting the performance of the page. Web worker specification defines an API for spawning background scripts in our web application. Web workers allow us to do things like fire up long-running scripts to handle computationally intensive tasks, without blocking … Continue reading “Web-Workers”
Installing Node.js and Express.js in Mac
Installing node.js is very simple and it happens in just some clicks. Click on the Macintosh installer on the download screen. Follow the instructions to install Node in your mac, Finally, it prompts to make sure the $path is same as node.js is referring to. To verify, open terminal and type echo “$PATH”. Usually, it … Continue reading “Installing Node.js and Express.js in Mac”
Convert base64 string to a file in javascript
I lately realized that people who are using my technique to convert a file to a base64 string in javascript are searching out for a solution to convert base64 to a file. This article mainly concentrates on converting the base64 back to the respective file with their respective formats. There are many ways to achieve … Continue reading “Convert base64 string to a file in javascript”
Page Transitions with ANIMSITION
ANIMSITION is a simple jquery plugin for page transitions. we all know that CSS3 has ample of transitions and rotation features which help developers get descent enough types of effects in page transitions. At the same time JQUERY has got many effects like fade, rotate etc, to get complex effects in to our project easily. … Continue reading “Page Transitions with ANIMSITION”
SVG animation and creation in javascript
SVG- Scalable Vector Graphics SVG is a markup language for describing two-dimensional graphics applications and images, and a set of related graphics script interfaces. SVG allows for three types of graphic objects: Vector graphic shapes (paths consisting of straight lines and curves), images and Text. Advantages:- SVG images can be created and edited with any … Continue reading “SVG animation and creation in javascript”
Node.js end to end example with AJAX
In this article am going to explain how to get started with Node.js scripts and writing your own web services in Node.js. Before starting with writing the server logic we need to learn how to install and run Node.js programs, If you’re not familiar with it, go through one of my previous article How to run … Continue reading “Node.js end to end example with AJAX”
Custom HTML Audio tag
There may be hundreds of Javascript and HTML audio players available, but always the requirement will be somewhat different from the current one. So i felt it is better to learn customizing the audio player according to my own needs. Let’s see how i could do it in a simple way, Firstly I create an audio … Continue reading “Custom HTML Audio tag”