With a comprehensive open source management solution like the Tidelift Subscription, organizations can efficiently manage the ways development teams use thousands of open source components across JavaScript, Java, Python, Swift, and Golang. (Beta-compatible with Rust, C#, Ruby, and PHP.) Improve the health, security, and resilience of the open source used in their applications with catalogs of known-good, proactively maintained open source components—backed by maintainers.
listr is a terminal task list available via the npm package manager. listr maintainer and creator, Sam Verschueren, maintains listr via the Tidelift Subscription. listr is used by more than 165,000 repositories and over 1,000 other projects depend on listr.
listr does the following:
task
can return different values. If a task
returns, it means the task was completed successfully. If a task throws an error, the task failed.task
can also be async by returning a Promise
. If the promise resolves, the task completed successfully, it it rejects, the task failed.task
can also return an Observable
. The thing about observables is that it can emit multiple values and can be used to show the output of the task.stream
. The stream will be converted to an Observable
and handled as such.skip
function to determine whether a task can be skipped.You can learn more about listr on the project repo.