npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

di-con

v0.1.0

Published

A simple IoC container

Downloads

736

Readme

Di-Con [WIP]

Simple IoC container library.

Install


npm i -S di-con
const container = require('di-con');

Simple Classes


With simple classes you simply bind and make them.

class ClassEx {
  talk() {
    return 'Hello World';
  }
}

container.bind('ClassEx', ClassEx);

const example = container.make('ClassEx');

console.log(example.talk());
// Hello World

Each time make is called for a class binding it will get a new instance of that class.

const exampleOne = container.make('ClassEx');
const exampleTwo = container.make('ClassEx');

console.log(exampleOne === exampleTwo);
// false

Dependencies


If the class needs dependencies you simply chain them onto the binding using the depends method. When make is called it will loop through the dependencies and try to resolve them. It first checks the other bound items, then it checks to see if it can require it from node_modules. If it can't find it in either of those places it just uses it as a literal.

class DependEx {
  constructor(one, two, three, four, five) {
    this.one = one;
    this.two = two;
    this.three = three;
    this.four = four;
    this.five = five;
  }

  showDeps() {
    console.log(this.one);
    console.log(this.two);
    console.log(this.three);
    console.log(this.four);
    console.log(this.five);
  }
}

container.bind('DependEx', DependEx).depends('Foo', 23, { name: 'World' }, 'ClassEx', 'moment');

const depend = container.make('DependEx');

depend.showDeps();
// Foo                 -- No other bindings or node_modules, use literal
// 23                  -- Not a string, use literal
// { name: 'World' }   -- Not a string, use literal
// ClassEx {}          -- Found in bindings
// Moment {}           -- Found in node_modules

depends saves its arguments as they are provided and injects them into the constructor in the same order.

Singletons


Like with dependencies, to make a singleton just chain the binding with the singleton method.

class SingleEx {
  constructor() {
    this.time = new Date();
  }

  getTime() {
    return this.time;
  }
}

container.bind('SingleEx', SingleEx).singleton();

const singleOne = container.make('SingleEx');
const singleTwo = container.make('SingleEx');

console.log(singleOne === singleTwo);
// true

console.log(singleOne.getTime());
console.log(singleTwo.getTime());
// Wed Jun 07 2017 16:16:40 GMT-0400 (EDT)
// Wed Jun 07 2017 16:16:40 GMT-0400 (EDT)

You can also, of course, chain off the depends method as well to make a singleton container.bind('', {}).depends('', '').singleton()

Types


When binding a value, an attempt is made to infer the type of the value given, class or factory. In the case of prototype constructor functions that doesn't necessarily work well. So you have the ability to tell the container what type you want the value to be treated as using the as method. There are three available types: class, factory, singleton.

function ProtoEx() {}
ProtoEx.prototype.yell = function() {
  console.log('HEEEY!');
};

container.bind('ProtoEx', ProtoEx).as('class');

const proto = container.make('ProtoEx');

proto.yell();
// HEEEY!

Factories


Factory functions can also be bound to the container. Instead of giving a class constructor as the second argument, you give a function. The function will be called when you make it.

class CounterEx {
  constructor() {}

  count() {
    return 5;
  }
}

container.bind('Counter', CounterEx);

container.bind('Func', () => {
  const counter = container.make('Counter');
  return 5 * counter.count();
});

console.log(container.make('Func'));
// 25

Thats nice for simple functions but kind of useless for most stuff, so instead of giving the binding a function that returns a value, you can give it a function that returns a function.

class CounterEx {
  constructor() {}

  count() {
    return 5;
  }
}

container.bind('Counter', CounterEx);

container.bind('FuncArg', () => val => {
  const counter = container.make('Counter');
  return val * counter.count();
});

const funcArg = container.make('FuncArg');

console.log(funcArg(6));
// 30

console.log(funcArg(10));
// 50

API

Container


register(name:String, value:Mixed)

Register a binding with the container. Returns a new Binding.

bind(name:String, value:Mixed)

An alias for register.

resolve(name:String)

Resolves the given binding name.

make(name:String)

An alias for resolve.

rebind(name:String, value:Mixed)

Rebind an item that is already on the container. Returns a new Binding.

forgetInstance(name:String)

Remove a resolved shared instance from the instance cache.

forgetAllSharedInstances()

Clear all of the shared instances from the container.

flush()

Flush the container of all bindings and instances.

isBound(name:String)

Determine if the given item has been bound.

isShared(name:String)

Determine if a given item is shared.

isFactory(name:String)

Determine if a given item is a factory.

Binding


singleton()

Mark the binding as a singleton. Returns the Binding.

depends(...args:Mixed)

Set the dependencies for the binding. Returns the Binding.

as(type:String)

Set the type of the binding. Returns the Binding.

License


di-con is licensed under the DBAD license.

Copyright (c) 2017 Bryan Kizer

Everyone is permitted to copy and distribute verbatim or modified copies of this license document.

DON'T BE A DICK PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  1. Do whatever you like with the original work, just don't be a dick.

    Being a dick includes - but is not limited to - the following instances:

 1a. Outright copyright infringement - Don't just copy this and change the name.  
 1b. Selling the unmodified original with no work done what-so-ever, that's REALLY being a dick.  
 1c. Modifying the original work to contain hidden harmful content. That would make you a PROPER dick.  
  1. If you become rich through modifications, related works/services, or supporting the original work, share the love. Only a dick would make loads off this work and not buy the original work's creator(s) a pint.

  2. Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back.