RxJS 5 scheduler using requestIdleCallback
npm install rxjs-requestidlecallback-scheduler

rxjs-requestidlecallback-scheduler provides scheduler implementation to requestIdleCallback. Scheduling behavior follows AnimationFrameScheduler while actions are schduled via requestIdleCallback instead.
This has a peer dependencies of rxjs@5.., which will have to be installed as well
``sh`
npm install --save-dev rxjs-requestidlecallback-scheduler
`jsrxjs-requestidlecallback-scheduler
import { idle } from
Observable.of(true).subscribeOn(idle)...;
`
Few npm scripts are supported for build / test code.
- build: Transpiles code to ES5 commonjs to dist.build:clean
- : Clean up existing buildtest
- : Run unit test. It's tailored for CI environment (Browser, coverage config)lint
- : Run lint over all codebaseslint:staged
- : Run lint only for staged changes. This'll be executed automatically with precommit hook.commit`: Commit wizard to write commit message
-