babaixdevforbabaiXdevbabaixdev.hashnode.dev·8 hours agoMaster-HTMLa> Basics of html and basic tags :→ html :-> hyper text markup language meta data :-> info about the anything. (mp3.mp4) 1> doctype html (is saying) hey my document type is html ) 2> html don’t know about space 3> 6 heading (h1---h6) <!DOCTYPE html> ...DiscussWeb Development
Pankaj Sharmapankajsharma.hashnode.dev·14 hours agoHow To Deploy MERN Stack On GitHub?Introduction Deploying a MERN stack application on GitHub is a key process for making your project accessible, collaborative, and scalable. The MERN stack—comprising MongoDB, Express.js, React, and Node.js—is a powerful JavaScript-based framework for...DiscussMERN Stack Deploy
Akash De Alwiszencode002.hashnode.dev·17 hours agoMERN StackWhat is the MERN Stack? MERN is an acronym for MongoDB, Express.js, React.js, and Node.js—a collection of open-source technologies that together provide an end-to-end framework for developers. MongoDB: A NoSQL database that stores data in JSON-like ...DiscussMERN Stack
Shivanshi Singhshivanshi770.hashnode.dev·Nov 22, 2024The Impact of ReactJS on Modern Web DevelopmentWeb development has undergone a significant transformation over the years, and one of the key drivers of this evolution is ReactJS. As a powerful JavaScript library, ReactJS has reshaped how developers build user interfaces and enhance web applicatio...DiscussReact
Workspace Ronniedeveloper-ronnie.hashnode.dev·Nov 21, 2024Building Document Management System: PART 1Are you sick of tutorials that promise real-time features but deliver real-world headaches? You watch a video and get hyped about building the next big thing, but when you try to make it work in your project, you just get bugs, errors, and frustratio...DiscussFullstack ProjectsNext.js
Workspace Ronniedeveloper-ronnie.hashnode.dev·Nov 21, 2024Must-Try Full-Stack Projects for Web Developers📢 Jump to the PROJECT DETAILS section for a quick overview of projects Introduction Hands-on projects are the heart of web development. They turn theory into action, helping you master real-world skills while showcasing your creativity. Full-stack...DiscussFrontend Development
seo2for'this keyword' work in JavaScript ?hexahome.hashnode.dev·Nov 20, 2024Understanding the 'This' Keyword in JavaScript: A Beginner's GuideIn JavaScript, the this keyword is a crucial concept that refers to the object that is currently executing or calling a function. Its value is determined by the context in which the function is invoked, making it dynamic and versatile. Contexts of th...DiscussDeveloper
Anurag Kumaranuragk24.hashnode.dev·Nov 19, 2024The Fun World of JavaScriptJavaScript is the language that makes websites interactive, but it’s also full of surprises! It can be confusing, funny, and even a little bit strange at times. In this blog, we’ll understand some of the fun and unexpected things JavaScript does, whi...Discuss·11 likes·53 readsWeb DevWeb Development
Akshay Bendadiakshay-bendadi.hashnode.dev·Nov 19, 2024Understanding Data Modeling with MongooseAs part of my full-stack learning journey, today marks Day 8, and I delved into the critical concept of data modeling with Mongoose. Mongoose is a powerful ODM (Object Data Modeling) library for MongoDB, and it simplifies defining schemas, structurin...Discussbackend
Asawerasawer.hashnode.dev·Nov 19, 2024Mastering the Node.js Module System: A Comprehensive Guide for DevelopersA module is a reusable piece of code encapsulated in its own file or directory. Node.js uses the CommonJS module system by default and also supports ECMAScript Modules (ESM). 1. Node.js Module System Node.js has a built-in module system that allows ...DiscussNode.js