Allan WANJIKUblog.allanwanjiku.tech·21 hours agoUnderstanding MySQL Triggers: Syntax and Usage ExamplesA trigger is a predefined program that executes automatically when an INSERT, UPDATE, or DELETE operation happens in a specified table. For example, you can create a MySQL trigger that executes automatically when a row is deleted. There are several t...DiscussMySQL
Vashishth Gajjarvashtech.hashnode.dev·Nov 20, 2024Create Your APIAPIs (Application Programming Interfaces) are the backbone of modern software development, enabling applications to communicate and share data efficiently. Whether you're building a project or looking to level up your development skills, creating you...DiscussAPIs
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·10 likes·42 readsWeb DevWeb Development
Ruchi Lamichhaneruchi77.hashnode.dev·Nov 19, 2024StandBlog - A Blogging platformStand Blog is a simple blogging platform with key features like Home, About Us, Blog Entries, Contact Us, and options to create new posts. It allows users to submit new blog entries, view detailed posts, and send messages directly through the website...Discuss·3 likesBlogging
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, 2024Node.js File System, Learn everything!The fs module is a built-in Node.js module that allows interaction with the file system. It enables you to: Create, read, write, and delete files and directories. Manage file metadata. Work with both synchronous and asynchronous operations. 1. N...DiscussNode.js
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
Asawerasawer.hashnode.dev·Nov 19, 2024Learn about npm: Step-by-Step Guide to Node Package Manager1. What is npm? npm stands for Node Package Manager. It's the default package manager for Node.js. It helps developers install, share, and manage dependencies in their Node.js projects. It provides access to the npm registry, a vast collection of ...DiscussNode.js
JealousGxblog.jealous.dev·Nov 19, 2024Understanding When to Use Node.js, Java, ASP.NET (C#), Golang, and Python in Web DevelopmentIn the world of web development, there are numerous programming languages and frameworks to choose from, each with its own strengths and weaknesses. Deciding on the right language or platform for your web application depends on various factors like p...DiscussNode.js
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