f_ (wip)

Async and modular application development made easy.

Build Status Coverage Status Inline docs Codacy Badge Code Climate Dependency Status


Install

npm install f_

Use

const f_ = require('f_');

function method1() {
  this.f_next();
}

function method2() {
  this.f_next();
}

const task_list = f_.getConstructor({
  function_flow: [
    {
      name: 'method1',
      function: method1
    },
    {
      name: 'method2',
      function: method2
    }
  ]
});

For more information check out the code coverage here, or check the documentation generated by JSDoc here.