Tools
JS & CSS Minifier
Make your website smaller and faster by minifying the JS & CSS code! How it looks? Why you should compress JS/CSS? Page loading time is an essential aspect of your website’s UX. Some builders let Read more…
Make your website smaller and faster by minifying the JS & CSS code! How it looks? Why you should compress JS/CSS? Page loading time is an essential aspect of your website’s UX. Some builders let Read more…
4 ES2015 features that you’ll use on a daily basis with Vue Arrow functions Template literals Modules Destructuring and spread syntax 1. Arrow functions Arrow functions are a new way to declare JavaScript functions. They Read more…
A library to make an element follow you as you scroll Go to the demo page Installation npm 1npm install pretty-scroll --save or yarn 1yarn add pretty-scroll CDN 1<script src="https://unpkg.com/pretty-scroll@1.1.0/js/pretty-scroll.js"></script> Usage JavaScript 123456789import PrettyScroll from Read more…
Selecting the wrong axioms can unnecessarily restrict a useful generalization, and force us to come up with another name for a special case of the same general idea. Software developers don’t like to repeat ourselves Read more…
Web Storage concepts and usage The two mechanisms within Web Storage are as follows: 1sessionStorage maintains a separate storage area for each given origin that’s available for the duration of the page session (as long Read more…
JavaScript is single threaded, meaning that two bits of script cannot run at the same time; they have to run one after another. In browsers, JavaScript shares a thread with a load of other stuff Read more…
In software engineering, the module pattern is a design pattern used to implement the concept of software modules, defined by modular programming, in a programming language with incomplete direct support for the concept. This pattern Read more…
What Is Javascript Obfuscator? Javascript Obfuscator converts the JavaScript source code into obfuscated and completely unreadable form, preventing it from analyzing and theft. It’s a 100% safe JavaScript minifier and the best JavaScript compressor. Online Read more…
Design patterns are advanced object-oriented solutions to commonly occurring software problems. Patterns are about reusable designs and interactions of objects. Each pattern has a name and becomes part of a vocabulary when discussing complex design Read more…
Progressive Web App Checklist by developers.google.com Progressive Web Apps (PWA) are reliable, fast, and engaging, although there are many things that can take a PWA from a baseline to exemplary experience. To help teams create Read more…