Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.