Typescript Gang of 4 Series
December 09, 2015
When I started out writing this blog way back circa 2008 timeframe it was fully focused on .NET tech, things have changed with time and while .NET is still my second love (my first love was C++) I now find myself in a multiple of different language frameworks and tech. I also find that I’m not so much on bleeding edge but rather focus my efforts where I expect I’ll get most rewards. I stayed away from ASP5 until about now-ish i.e when the RC1 version is out in the wild and given so much has changed I’m glad I did.
A few years back I heard of this language coming out of MS called Typescript, it seemed like a great idea but I didn’t immediately jump on the bandwagon, fast forward a few years to the middle of last summer where I found myself making some architectural decisions, one of which was typescript vs bable vs other transpilers. In the end my head told me Typescript even though my heart favoured JavaScript, now fast forward 6ish months to now and I can honestly say this was one of the best decisions I ever made.
So now I’d like to share the love as such and re created the Gang of four patterns in typescript over a series of blog posts.
Gang of four
So what is gang of four I hear you ask! Well basically it’s a set of patterns outlined in a software engineering book written by four people (Gof gang of four) which describes solutions to common problems in software design, the book includes examples in C++ and Smalltalk. My posts will attempt to reproduce same said patterns in Typescript.
I’ll update this article as I add to this blog post series, the patterns I’ll be covering are:
Creational
Abstract factory
Builder
Factory
Prototype
Singleton
Structural
Adapter
Bridge
Composite
Decorator
Facade
Flyweight
Proxy
Behavioral
Chain of responsibility
Command
Interpreter
Iterator
Mediator
Memento
Observer
State
Strategy
Template method
Visitor
I’ll create all these patterns on Github here so if anyone wants to help me out please do!