Giter VIP home page Giter VIP logo

instill's Introduction

instill

Logo

The smallest dependency injection framework for Node.js.

API

Usage

const inject = require('instill')

inject(exports, {
  fs: require('fs')
})

exports.readAFile = function (...args) {
  this.modules.fs.readFile(...args)
}

You then have essentially two options:

  • use: This will change a dependency in the current module instance. Useful for injecting configuration-based dependencies. This affect all other parts of the code using this module.

  • with: Creates a copy of the current module. Useful for testing.

Example:

describe('testing', function () {
  require('logger').use('winston', ...)

  it('test readAFile', function (done) {
    require('myModule').with({
      fs: require('mock-fs').fs({
        myFile: 'some content'
      })
    }, function (myModuleCopy) {
      myModuleCopy.readAFile('myFile', done)
    })
  })
})

This will:

  1. Mock winston in the logger. All other modules using the logger module will be affected.
  2. Get a copy of myModule, and test it.

Instanciating objects

The only drawback of this library is that you will need to change how objects get instanciated. If you do not like it, well... I understand. It's OK.

First, you will need to register your classes, like so:

inject(exports, {
  fs: require('fs')
}, {
  SomeClass,
  SomeOtherClass
})

Then, to create an instance of registered classes:

  const someObject = myModule.instanciate('SomeClass', 1, 2, 3)

TODO

  • Test suite, linting, etc.
  • Maybe support AOP?

License

MIT

instill's People

Contributors

stelcheck avatar

Watchers

James Cloos avatar

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.