Giter Site home page Giter Site logo

abstractfactoryjs's Introduction

Abstract Factory for JavaScript

Copyright (c) 2017 David Betz

license Build Status npm version coverage Say Thanks!

See test/provider.js unit test for usage.

Basically an implementation of an abstract factory pattern.

In one system where I use this, I create factories for eachs type of thing in my system. So, SearchFactory, CloudStorageFactory, QueueFactory, AristotleFactory, etc... These would implement for ID interface like ICloudStorageProvider (in Node, it's just a class).

Each of these would have their own switch/case (or whatever) to create the factory for it. So, for example, I may have config in a YAML file specifying that I want to use Mongo for my Aristotle provider ("Aristotle" is what most people incorrectly call "NoSQL").

To begin, create the factory (do this one for the entirety of your system):

const abstractFactory = new AbstractFactory()

Then, add your factories:

    abstractFactory.set(SearchFactory)
    abstractFactory.set(CloudStorageFactory)
    abstractFactory.set(QueueFactory)
    abstractFactory.set(AristotleFactory)

When the time comes, just ask for your provider:

provider = abstractFactory.resolve(IAristotleProvider)

Your code SHOULD. NOT. CARE. ABOUT. MONGO. It should the your configuration or something handle that. Don't tightly couple your providers.

Also note that the resolver also accepts various arguments for extra flexibility:

provider = abstractFactory.resolve(IAristotleProvider, "alternateConnectionString", { "collection": "log" })

Despite what random bloggers say, service locators are awesome and provide excellent decoupling.

Look at the Mock examples provided with the tests; they're rather extensive.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.