
Research
/Security News
Bitwarden CLI Compromised in Ongoing Checkmarx Supply Chain Campaign
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.
async-wait-then
Advanced tools
a package to: wait, then do something asynchronously.
wait is yet another step in making setTimeout more efficient.
It also allow easy use of the promises while removing all the async and await and Promises in your app.
To use wait, you must first install it, it available on npm.
npm install async-wait-then
Import as npm module:
// Using ES6 syntax
import wait from 'async-wait-then';
// Using CommonJS or requireJS syntax
let wait = require('async-wait-then');
<script src="https://unpkg.com/wait" type="script/javascript" />
To use it, you run wait with the time to wait as the only attribute
// Pass on microseconds
wait(100).then(() => console.log("Just waited 😎."));
// Pass a string as parameter
wait('1 minute').then(() => console.log("One minute done"));
wait(time: (String|Number)): Promise
A promise, which you can attach then() to.
Note: wait only resolves, it never rejects. In other words: it only allows
.then()to be called, not.catch(), if you listen forcatch, no error is likely to be thrown, so it's useless.
Common builds are provided directly with the module, so if you ever wanted to require the umd build, you would do something like: require("async-wait/index.umd.js"), you can replace umd for:
other builds are provided (for convenience) in /dist folder.
You may use this, when triggering notifications, or just to avoid using the ol' setTimeout API. In fact, it uses it, but with a Promise wrapper.
requestAnimationFrame or requestIdleCallback, this is more efficient and works when no time was provided.To: @zeit (Vercel) for the ms, which is used to transform dirty strings into micro-seconds.
donate on PayPal.
FAQs
wait, then do something asynchronously
We found that async-wait-then 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
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.

Research
/Security News
Docker and Socket have uncovered malicious Checkmarx KICS images and suspicious code extension releases in a broader supply chain compromise.

Product
Stay on top of alert changes with filtered subscriptions, batched summaries, and notification routing built for triage.