ASAbhishek Sharmainabhishek2006.hashnode.dev·Aug 18, 2023 · 3 min readStarted with JSXJSX: JSX is a syntax extension to JavaScript, it helps to write HTML-like structures in JSX, remember HTML-like structures, not exact HTML, we can also execute any javascript code inside JSX code unser { } braces. JSX code creates reactElement and re...00
ASAbhishek Sharmainabhishek2006.hashnode.dev·Aug 17, 2023 · 4 min readIgniting our app(creating our own react-create-appNPM: NPM is a package manager used to manage the packages, it is a standard repository for all package managers. All the packages are hoisted on it, we can borrow these packages from npm and use them in our code. Parcel/Webpack: Parcel and Webpack ar...00
ASAbhishek Sharmainabhishek2006.hashnode.dev·Aug 17, 2023 · 2 min readStarting with the ReactEmmet: Emmet is a pluged in for many popular text editors which increate the HTML and css workflow and gives some shorthand method. Framework vs Libaries Both framework and Libaries are pre-written code use to provide structure for developing a softw...00
ASAbhishek Sharmainabhishek2006.hashnode.dev·Apr 3, 2023 · 2 min readProcess States In OsWhen a process run on any device it must go through a minimum of four steps that is new, ready, running, and terminated. New: In this state, the process is about to create but not yet created. Before this state, any process has not yet been created. ...00
ASAbhishek Sharmainabhishek2006.hashnode.dev·Mar 24, 2023 · 1 min readIntroduction of Operating SystemThe operating system is system software that resides within the system. It works as an interface between the user and the hardware means it provides a way for us to interact with the system. So why do we need an Operating system? The help of an opera...00