f_
Version:
Async and modular application development made easy
46 lines (33 loc) • 1.46 kB
Markdown
# f_ (wip)
Async and modular application development made easy.
[](https://travis-ci.org/opensoars/f_)
[](https://coveralls.io/github/opensoars/f_?branch=master)
[](http://inch-ci.org/github/opensoars/f_)
[](https://www.codacy.com/app/sam_1700/f_)
[](https://codeclimate.com/github/opensoars/f_)
[](https://david-dm.org/opensoars/f_)
[](https://david-dm.org/opensoars/f_#info=devDependencies)
---
## Install
`npm install f_`
## Use
```js
const f_ = require('f_');
let f_.getConstructor({
function_flow: [
{
name: 'method1',
function: function method1() {
this.f_next();
}
},
{
name: 'method2',
function: function method2() {
this.f_next();
}
}
]
});
```
For more information, check out the full documentation [here](https://github.com/opensoars/f_/tree/master/doc/pdf) or the documentation generated by JSDoc [here](https://opensoars.github.io/f_/jsdoc).