© 2023 Hashnode
#mvc
View is going to give the actual UI.Model is going to contain the actual business logic and do all database interaction & everything.Controller : It takes request from view & passes it to model. Yakes…
The Benefits of Decoupling Code in MVC As a web developer, one of the essential skills you need to master is writing clean code. Clean code not only improves the maintainability of your web applicatio…
Create a github repo with a README. Clone the repo on your local machine. Open the project in VS-CODE. In the terminal, type npm-init to create the package.json file. Install dependencies - npm i expr…
Node.js is a popular runtime environment for developing scalable, high-performance web applications. It uses an event-driven, non-blocking I/O model that allows for building real-time, data-intensive …
Android architecture patterns are like a blueprint for your app’s codebase. They’re designed to help you organize your code in a way that makes it easy to maintain, scale, and understand. Think of it …
Django is a high-level, open-source Python web framework that allows developers to quickly and efficiently build web applications. It follows the Model-View-Controller (MVC) architectural pattern and …
Ruby on Rails (often called simply "Rails") is a popular web application framework that is built using the Ruby programming language. It was created by David Heinemeier Hansson in 2004 and has since b…
Introduction Hello, techies! Here we are again with another article. Welcome back! In this article, I'll be sharing the lessons I've learned from my recent experience with Sails, a powerful Node.js framework that I recently picked up. Sails…
MVC, or Model-View-Controller, is a popular design pattern used in software development to separate an application's concerns into three distinct components: the model, the view, and the controller. U…
There are lots of software architectural design patterns, but in this article I would be explaining about a particular one known as the MVC pattern. MVC is an abbreviation which stands for Model View …