Rajesh Polaratirajeshpolarati.hashnode.dev·Aug 8, 2024Getting Started with Webpack: A Beginner’s Guide - Part 2In the previous blog, we have seen how webpack has evolved, webpack core concepts, and installation & setup. If you didn't read the previous article, read it before reading this article. Here is the link for Part 1In this blog, we will look into some...Discuss·31 readsJavaScript
Elom Emmanuelscansio.hashnode.dev·Jul 22, 2024How to Transpile JavaScript/TypeScript with Babel AST: A Guide for Functions and ClassesMastering JavaScript/TypeScript Transpilation with Babel AST: From Functions to Classes In the ever-evolving world of web development, keeping your codebase up-to-date with the latest patterns and practices is crucial. One common migration path is tr...DiscussBabel
Weiping Dingwpding.hashnode.dev·Sep 7, 2023Write a Babel plugin to inject profiling codeA long time ago 😅 I wrote the first post Understand Babel Plugin to go through the core concept of how Babel transforms your JavaScript source code, you can go back to read it if you have not, it's essential to this second one, which we will write a...Discuss·72 readsBabel Plugin: A Tool to Tinker with JavaScript Codebabel-plugin
Maxat Akbanovmaxat-akbanov.com·Jun 17, 2023What is Babel js?Babel is a popular JavaScript compiler that allows you to write code using the latest JavaScript features and syntax and then transform it into backward-compatible versions that can run in older browsers or environments. Babel enables developers to t...Discuss·6 likes·120 readsjavascriptJavaScript
Weiping Dingwpding.hashnode.dev·Oct 2, 2022Understand Babel PluginBabel as a transpiler In old days, JavaScript used to be interpreted directly, it means what you write in the code editor is the same as what's running in the browser, well maybe just with minified source code. However when writing modern apps, we of...Discuss·67 readsBabel Plugin: A Tool to Tinker with JavaScript Codebabel-plugin