Have any one used the SOLID programming principle (or any of it's parts) while developing JavaScript?

I've just started up on reading on it but can't seem to find anyone that used it for JS. The only part I find easy to implement/use is the "Single responsibility principle".

What I'm looking for is articles or example where these principles are used. And are there any argument's why one shouldn't use some parts?

For example the "Interface segregation principle" says that "the notion that many client specific interfaces are better than one general purpose interface."

But from my knowledge there's no such thing as interfaces in JS (nice if it would be).

link|improve this question

77% accept rate
feedback

3 Answers

up vote 4 down vote accepted

SOLID is meant for object-oriented programming. JavaScript is a prototype-based language but allows programming in an OOP-manner (if you really try hard to do so). Many people believe that you shouldn't try to force paradigms of languages you learned (like C++/C#/Java) onto others (JavaScript). Here's an article on OOP in JS which also comes to that conclusion.

There are some approaches to OOP in Prototype.js, CoffeeScript, and John Resigs Simple JavaScript Inheritance (each with its own traps).

But the terminology (interfaces, abstraction) of SOLID is difficult to apply to vanilla JavaScript in a proper manner. You will be able to apply "S", and maybe the "L" (which are good concepts). But going further would require constructs like interfaces (which are hard to find in dynamic languages anyway, contracts might work) and the ability to restrict inheritance/modification.

link|improve this answer
1  
I don't agree that this is common consensus. Many JavaScript libraries use these techniques in order to maintain encapsulation, support namespaces, and avoid collisions. I agree that OO rules in JavaScript shouldn't be the same as in C++/C#/Java as there are certain things that are just really hard to enforce (private methods/fields). However, there does need to be some rules to keep the code clean, collision free, and reusable. So if someone wants to adopt some principles of SOLID, I don't see the harm in doing so. – jmort253 Jan 17 '11 at 10:14
I agree that I shouldn't have used "common" - especially because there are so many approaches to OOP in JS (edited my answer). – Marcel Jackwerth Jan 17 '11 at 10:46
@Marcel, I think you're mixing implementation with design. The SOLID principles are just that (principles/ideas). There are examples of how you might implement the principles in particular languages (Robert Martin's article specifically mentions C++ for instance), but the ideas are language agnostic, and very sound for building maintainable software. I think a dynamic language such as Javascript can benefit even MORE from such ideas since things in Javascript (and many dynamic languages) can quickly get unwieldy if not carefully designed. – Robert C. Barth Sep 27 '11 at 16:54
feedback

JavaScript sometimes gets a bad rap as being sub-par to those such as C++, C#, and Java, when in fact it's a very powerful functional programming language that also has object oriented capabilities (although it's not really classified as object oriented)

Perhaps many developers look down on it because so many of them are used to seeing poor programming practices and consequently, buggy behavior in JavaScript. For some unknown reason, it seems more acceptable to be sloppy on the client side. This is something I would like to change.

I believe these SOLID principles are solid. (No pun intended). If you follow these conventions, you will be less likely to accumulate technical debt created by sloppy code, shortcuts, and no architecture. Your code will be more maintainable, more reusable, more modular, less tightly coupled, and scalable and extensible. You'll also be contributing to demonstrating the full power of JavaScript when your product is engineered instead of just recklessly slapped together.

This document describes the fundamentals of SOLID. The same rules apply whether you're referring to C++, Java, JavaScript, or any other object-oriented language.

http://www.codeproject.com/Articles/60845/The-S-O-L-I-D-Object-Oriented-Programming-OOP-Prin.aspx

Here is some more information on JavaScript concepts: http://www.colourcoding.net/blog/Tags/SOLID%20Principles/default.aspx

link|improve this answer
If I could +100, I would. – Robert C. Barth Sep 27 '11 at 16:57
feedback

It looks like Derek Greer is attempting to take a stab at this with his article series on SOLID JavaScript at Fresh Brewed Code:

  1. The Single Responsibility Principle -- seems like a really good introduction into the look and feel of applying SRP on a small body of JavaScript code.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.