Vvivekinviveksingh.hashnode.dev·Feb 18, 2023 · 2 min readGitHub all commandsgit init: This command is used to initialize a new Git repository. It creates a new directory with a .git subdirectory that contains all the necessary files for Git to track changes. Example: csharpCopy code$ git init my-project This will create a ...00
Vvivekinviveksingh.hashnode.dev·Oct 5, 2022 · 3 min readHow To Use Tailwind CSS With Reactlet's discuss why Tailwind CSS: What It Is, Why Use It: When coding an application from scratch, you want it to reflect your unique brand, be responsive on any device, and be easy to write and maintain — and those are probably just a few items on you...00
Vvivekinviveksingh.hashnode.dev·Sep 24, 2022 · 3 min readdifference between Var, Let, and Constthe 6th version of ECMAScript was launched, a lot of shiny new features came out. And now, since it’s 2022, it’s assumed that most of the developers have become familiar with those features. At the beginning of JavaScript, there is only one way to de...00
Vvivekinviveksingh.hashnode.dev·May 10, 2022 · 2 min readHow to use material UI with react ProjectOne of my favorites is React UI libraries Material UI, which makes a good UI library for a variety of reasons. It's not just the amount of work it takes to produce components that are usable and look nice, but these components need to be documented w...00
Vvivekinviveksingh.hashnode.dev·May 9, 2022 · 2 min readDebouncing and throttling in JavaScriptDebouncing and Throttling are two widely-used techniques to improve the performance of code that gets executed repeatedly within a period of time. Debouncing in JavaScript is a process used to improve browser performance. There may be some work on a ...00