1.2.6 ā€¢ Published 4 years ago

kkfc v1.2.6

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Create logic quickly and simply

const t1 = new Task( 'param',  200 );
const t2 = new Task( 'make log', ( a: number ) => `value: ${a * 10}` );
const t3 = new Task( 'print', ( a: string ) => console.log(a) );
const r2 = new Runner( 'r2', undefined, [ t1, t2, t3 ] );
r2.start(); // value: 2000  

šŸ  Homepage

Prerequisites

  • npm >=6.12.0
  • node >=12.13.0

Install

yarn install

Run tests

yarn test

šŸƒ Current progress

create task, runner . start function implementation complete.

Execute function auto tracing. Logging according to Auto Trace. Log level options. utility function support (http, promise, response state(custom)). consider deleting Task class.

Author

šŸ‘¤ minyeong seo https://github.com/load28

šŸ¤ Contributing

Contributions, issues and feature requests are welcome!Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ā­ļø if this project helped you!

šŸ“ License

Copyright Ā© 2020 minyeong seo <https://github.com/load28>. This project is MIT licensed.


This README was generated with ā¤ļø by readme-md-generator

1.2.6

4 years ago

1.2.5

4 years ago

1.2.4

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago

1.2.0

4 years ago

1.2.1

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago