© 2023 Hashnode
#nodejs
Day 117 of #365DaysOfCode I found that React's built-in createContext and useContext hooks didn't quite meet my requirements. These hooks are typically used to pass data through the component tree without having to pass props down manually …
🎨 Frontend State of Node.js Performance 2023 Conditional CSS with :has and :nth-last-child Getting started with View Transitions on multi-page apps State Management in React Applications Underst…
Overview Hey, We are back with a blog on the most used package manager. In this blog, we will try to learn one of the package managers of JavaScript and it is also a default package manager for Node.j…
TypeScript vs JavaScript: A Detailed Comparison with Code Examples Introduction: JavaScript and TypeScript are both popular programming languages used for web development. JavaScript is a dynamic, int…
Introduction: MongoDB is a popular NoSQL database that provides flexibility, scalability, and high-performance capabilities. When combined with Node.js, it offers a powerful and efficient solution for…
In today's world, file uploads have become a very common feature in web applications. Node.js provides an easy way to handle file uploads in web applications. With the help of third-party packages lik…
The package.json file is a crucial part of any Node.js project. It serves as a manifest file that contains important metadata about the project and its dependencies. Here's a comprehensive guide to he…
Writing database queries without the model like below SELECT * FROM your_table_name WHERE column_name = 'some_value'; has many issues like adding proper data type validation etc. to get data from the…
In the vast landscape of software development, multitasking is the backbone of efficient and responsive applications. It allows us to juggle multiple tasks simultaneously, akin to a skilled performer …
Node.js is a powerful and widely used JavaScript runtime built on Chrome's V8 JavaScript engine. It allows developers to build scalable and high-performance network applications. One of the key features that make Node.js so efficient is its…