admin

CSS

Best CSS Frameworks in 2021

Bootstrap Foundation Bulma Tailwind CSS UI Kit Milligram Materialize CSS Quickly design and customize responsive mobile-first sites with Bootstrap, the world’s most popular front-end open source toolkit, featuring Sass variables and mixins, responsive grid system, extensive prebuilt components, and powerful JavaScript plugins. 2. Foundation A Framework for any device, medium, and accessibility. Foundation is a…

The NoSQL Database : Basics of CRUD in MongoDB – Part 1 – insertOne, find

Hey guys 👋🏻, In this article, let us understand about The NoSQL Database : Basics of CRUD in MongoDB. So in this article we will learn about how to retrieve to retrieve/access, delete, create and update our documents. We will also see how we can delete a document by making use of its id and all…

Web Dev Made Easy

Hey everyone 👋🏻, In this article, I will tell you about a website using which you can use as a resource for learning Web Development. So the website name is this : web.dev https://web.dev Now some of the featured courses on their website are : 1. Learn Responsive Design This course takes you on a…

✨8 Vue Projects Every Beginner Should Try

Hey everyone , In this article, let us see 8 Vue Projects Every Beginner Should Try. This article was first published on https://the-nerdy-dev.com/.Check the website for more interesting articles and tutorials on Web Development. Introduction Vue.js is an open-source model–view–view-model (MVVM) front end JavaScript framework for building user interfaces and single-page applications. It was created…

When to use the useRef hook ?

Hey everyone 👋🏻, In this article, let us learn about a very special React Hook called as the useRef hook and understand how and when to use it. What is the useRef hook ? useRef hook is something that I briefly discussed in one of my articles where I described useRef hook as something equivalent…

How Hoisting works in JavaScript ?

JavaScript Hoisting refers to the process whereby the interpreter appears to move the declaration of functions, variables or classes to the top of their scope, prior to execution of the code. Hoisting allows functions to be safely used in code before they are declared. Variable and class declarations are also hoisted, so they too can be referenced before they are declared….

Demystifying the useState hook in under 10 minutes

In this video, we will learn first about the basic Hooks that we have in React namely the useState and the useEffect hook. Once we understood the bare basics of the need for Hooks, then we will start to learn about the useState hook.

How Authentication works in REST APIs ?

Hey everyone 👋🏻, In this article, let us learn about more about REST APIs. This is the second article on the topic REST API. The first article on this topic can be read by clicking on the below link : https://dev.to/thenerdydev/what-is-a-rest-api-288l How authentication works in REST API ? So we again have our client and…

Top 10 Tools for Web Design

Are you looking for magic tools to ease out your design process ? Well, your search ends here. In this article, I am going to present you 10 tools that are a MUST to ease out your design process and make your overall workflow super efficient. With me ? Amazing. Here we go. The first tool is:…

Demystifying Closures in JavaScript

Hey guys 👋🏻, In this article, let us talk about Closures in Javascript. In this article, we will understand✔ What are Closures ?✔ Code Example with explanation. ✔ Conclusion What are Closures ? Before understanding what a closure is, let us revisit the concept of functions. From what we know about functions in JavaScript is…