
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Promise-based adaption of co stripped bare, with a some added conveniences
A copromise
represents the eventual value of a coroutine. A coroutine is a generator function where the yield
keyword is used to suspend execution to wait on a future value, allowing linear control flow logic for asynchronous code.
yield
Any kind of value can be yielded, either a promise or non-promise value. In other words, yield
is very much like the when
method exposed by some popular promise libraries. Internally, every yielded value is wrapped with Promise.resolve
, and when this promise is fulfilled its value will be returned as the result of the yield
expression. If an exeption is thrown or this promise is rejected the yield
expression will throw in the coroutine, which can be caught with the standard try
/catch
syntax.
return
Running a coroutine returns a promise which will resolve to the return value of the coroutine, if any. An unhandled exeption in the coroutine will result in a rejected promise.
yield*
The yield*
operator can be used to invoke to another coroutine. The result of the yield* epxression (if successful) will be the value returned from the delegated coroutine. If this value is a promise it will be resolved before execution resumes in the originating coroutine.
FAQs
Promise-based adaption of co stripped bare, with a some added conveniences
The npm package copromise receives a total of 0 weekly downloads. As such, copromise popularity was classified as not popular.
We found that copromise demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.