
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
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 1 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
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.