#javascript

Found 139 articles tagged with #javascript

JavaScript Task Runners

Grunt and Gulp are two popular tools to automate repetitive, mundane, painful and time-consuming tasks effectively.

Top 3 JavaScript Transpilers/Compilers

Transpilers in JavaScript are source-to-source compilers that can transform syntax and polyfill features, allow developers to write future facing code.

JavaScript Module Bundlers

Bundling JavaScript and non-JavaScript modules into bundles using Webpack, Rollup, Parcel and many more.

JavaScript Module Loaders

Module loaders are libraries that can handle loading modules using the different formats for further processing or executing.

JavaScript Package Managers

Package managers are tools that help you manage packages as dependencies and might also provide a global package registry.

Type Safety in JavaScript

Static type checkers and object validators are just incomplete solutions to the unsafe dynamic nature of JavaScript.

JavaScript Module Formats

An overview of CommonJS (CJS), Asynchronous Module Definition (AMD), Universal Module Definition (UMD), and ECMAScript Modules (ESM).

JavaScript Programming Paradigms

JavaScript is a multi-paradigm language which supports functional, prototype-based object-oriented, and event-driven programming.

Cracking the Frontend Interview, Part 4: JavaScript

JavaScript is the heart of web development, be prepared to be asked multiple confusing advanced concepts about it during frontend interview.

Tree Shaking in JavaScript

Tree shaking is a form of dead code elimination in JavaScript, relies on es6 modules, and implemented in module bundlers.

Jan 01, 2020#javascript#terms