Home >Web Front-end >JS Tutorial >Single Responsibility Principle in Javascript
Understanding the Single Responsibility Principle in JavaScript
When writing clean, maintainable code, one of the most important principles to follow is the Single Responsibility Principle (SRP). It’s one of the five SOLID principles in software development and ensures that your code is easier to read, test, and modify.
The Single Responsibility Principle according to Robert C.Martin states that:
A class or function should have one and only one reason to change.
In simpler terms, each unit of your code (be it a function, class, or module) should be responsible for doing one thing and doing it well. When responsibilities are separated, changes in one area of your code won't unexpectedly affect others, reducing the risk of bugs and making your application easier to maintain and test.
Without SRP, you might face problems like:
Let’s look at some practical examples of applying SRP in JavaScript.
Without SRP
function handleUserLogin(userData) { // Validate user data if (!userData.email || !userData.password) { logger.error("Invalid user data"); return "Invalid input"; } // Authenticate user const user = authenticate(userData.email, userData.password); if (!user) { console.error("Authentication failed"); return "Authentication failed"; } // Log success console.info("User logged in successfully"); return user; }
This function does too much: validation, authentication, and logging. Each of these is a distinct responsibility.
With SRP
We can refactor it by breaking it into smaller, single-purpose functions:
function validateUserData(userData) { if (!userData.email || !userData.password) { throw new Error("Invalid user data"); } } function authenticateUser(email, password) { const user = authenticate(email, password); // Assume authenticate is defined elsewhere if (!user) { throw new Error("Authentication failed"); } return user; } function handleUserLogin(userData, logger) { try { validateUserData(userData); const user = authenticateUser(userData.email, userData.password); logger.info("User logged in successfully"); return user; } catch (error) { logger.error(error.message); return error.message; } }
Now, each function has a single responsibility, making it easier to test and modify.
Without SRP
A class managing multiple concerns:
class UserManager { constructor(db, logger) { this.db = db; this.logger = logger; } createUser(user) { // Save user to DB this.db.save(user); this.logger.info("User created"); } sendNotification(user) { // Send email emailService.send(`Welcome, ${user.name}!`); this.logger.info("Welcome email sent"); } }
Here, UserManager handles user creation, logging, and sending emails—too many responsibilities.
With SRP
Refactor by delegating responsibilities to other classes or modules:
class UserService { constructor(db) { this.db = db; } createUser(user) { this.db.save(user); } } class NotificationService { sendWelcomeEmail(user) { emailService.send(`Welcome, ${user.name}!`); } } class UserManager { constructor(userService, notificationService, logger) { this.userService = userService; this.notificationService = notificationService; this.logger = logger; } createUser(user) { this.userService.createUser(user); this.notificationService.sendWelcomeEmail(user); this.logger.info("User created and welcome email sent"); } }
Each class now focuses on a single concern: persistence, notification, or logging.
The Single Responsibility Principle is a cornerstone of clean code. By ensuring that every function, class, or module has only one reason to change, you make your JavaScript code more modular, easier to test, and simpler to maintain.
Start small—pick one messy function or class in your current project and refactor it using SRP. Over time, these small changes will lead to a significant improvement in your codebase.
The above is the detailed content of Single Responsibility Principle in Javascript. For more information, please follow other related articles on the PHP Chinese website!