Ritesh BenjwalforTech Docsriteshbenjwal.hashnode.dev·29 minutes agoBuilding a Stock Simulator Platform: A Technical JourneyAs developers, creating platforms that blend gamification, and real-world practicality can be both challenging and rewarding. One such project I worked on was a Stock Simulator Platform. This platform was designed to help students and aspiring trader...Discussnestjs
Pradumna SarafforfreeCodeCampfreecodecamp.org·Nov 19, 2024How to Build a Flexible API with Feature Flags Using Open Source ToolsFeature flagging has changed the paradigm of how backend developers can test and modify the things they build. With feature flags, we can enable and disable a feature or change the functionality of something on the fly with a single click (no need to...DiscussOpen Source
Asawerasawer.hashnode.dev·Nov 19, 2024Node.js Path Module: A Comprehensive Guide for Beginners1. What is the path Module? The path module is a built-in Node.js module used to work with file and directory paths. It provides utilities to: Construct paths. Normalize paths. Resolve absolute paths. Extract specific parts of paths (like directo...DiscussNode.js
Victor Olusolavictorolusola.hashnode.dev·Nov 17, 2024Why Browser and Device Compatibility is Crucial in Software Development: Lessons from a Real-Life TestUnderstanding Browser and Device Compatibility Browser and device compatibility means making sure that software works well across different web browsers (like Chrome, Safari, and Firefox) and devices (such as desktops, tablets, and smartphones). The ...Discuss·27 readsWeb Development
Ayusharpcoderreacttonext.hashnode.dev·Nov 17, 202410 Must-Know Tips for New Web Developers Entering the Backend WorldTransitioning into backend development can be both exciting and overwhelming for web developers primarily versed in frontend technologies. While frontend focuses on the visuals and user interactions, backend development powers the functionality behin...Discuss·1 likewebdev
Sameer Sheikh Mansooriforhttp status codesameer234.hashnode.dev·Nov 10, 2024HTTP status codeDefinition: HTTP status codes are standard response codes that web servers use to communicate the status of a client’s request. Importance: Essential for debugging, enhancing UX, and SEO. Structure of HTTP Status Codes 🛠️ 3-Digit Number: Each code...DiscussStartups
Priyanshu Pandeypriyanshupandey.hashnode.dev·Oct 31, 2024A Comprehensive Guide to Mongoose Models: Key Advantages and How to Use ThemModels are like special templates made from schema definitions. They let us create and manage documents (records) in MongoDB. Each item created with a model is called a document, and models help us easily add, find, and work with these documents in t...Discussmongoose
Hansraj Deghunpythondevop.hashnode.dev·Oct 30, 2024Zero Downtime MySQL MigrationMigrating a massive MySQL table with over a billion rows while ensuring zero downtime can be a complex task. However, using a shadow tables and triggers, you can perform this migration seamlessly. In this blog post, we’ll walk you through the process...Discuss·3 likesMySQL
FYGS \_°<fygs.hashnode.dev·Oct 29, 2024How to Create a Modern Backend Using HonoJS, PostgreSQL, and Drizzle ORM with TypeScriptIn the rapidly evolving landscape of web development, choosing the right tools can significantly impact the efficiency and scalability of your applications. This article explores the integration of HonoJS, a modern web framework, with PostgreSQL usin...Discuss·1 like·60 readsbackend
Priyanshu Pandeypriyanshupandey.hashnode.dev·Oct 28, 2024Mongoose Schema Explained: Tips and Best PracticesIn Mongoose, everything begins with a Schema. Each schema links to a MongoDB collection and defines the structure of the documents in that collection. This means that with a schema, we decide what type of data will be in the collection and what forma...DiscussMongoDB