© 2022 Hashnode
ಶುಭಾಶಯಗಳು! (Śubhāśaya) So, I hope you also like to do some mechanical work and like to assemble a React project just like a toy train ( I used to break that train all the time 👀 ). Using a CRA tool …
Introduction Transpilers is a source-to-source compiler, they are tools that read source code written in one programming language, and produce the equivalent code in another language. This is a Wikipe…
I recently made a theme for blogger with Nextjs v12 that I used twin.macro with emotion plugin. I got a bunch error about babel-plugin-macros when I started the server. // Error ./node_modules/twin.…
Compiling is the process of taking source code written in one language and transforming it into another. Transpiling is the process of taking source code written in one language and transforming it in…
After getting Webpack and Electron to play nicely together in the last post, getting React up and running was easy. Too easy, in fact. I could create a .jsx file and render it with ReactDOM.render(), recreate many examples from various tuto…
This is a list of essential tools and services from my coding workflow that I think should be part of every web programmer’s toolkit. Whether you a building a simple “Hello World” app or a complex web…
We all know that computer only understands one language and that language has only 2 symbols which are '0' and '1'. Fascinating right! But do we really code in zeros and ones, not at all. Thanks to co…
Compiling and transpiling does have a really similar definition, but aren't equivalent processes. So, what's the difference? Before we start, we have to understand higher & lower-level languages. Higher-level are languages more lacking conc…
tl;dr Compiler - A tool that converts computer program written by humans in high level programming languages (C,C++,Java etc) to machine readable instructions for computers in 0s and 1s. Computers onl…
Hi 👋everyone, in this blog I'm going to tell you about compiler and transpiler. Compiler The term compiler was coined by American computer scientist Grace Hopper, who designed one of the first compi…