Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Avow is a tiny, fast, fully asynchronous Promises/A+ implementation, and passes the Promises/A+ Test Suite. It tracks Promises/A+ and is currently forward compatible to the upcoming revision Promises/A+ (likely to be versioned 1.1.0).
It's around 150 lines of JS (sans comments, module boilerplate, and nextTick sniffing), under 650 bytes when closured+gzipped, supports unhandled rejection hooks for debugging, and is very fast in environments where a fast nextTick
is available. It uses process.nextTick
or setImmediate
if available (you can use NobleJS's setImmediate polyfill), and will fall back to setTimeout
(srsly, use the polyfill) otherwise.
I wrote avow as a stripped-down test bed for new ideas for when.js, cujo.js's full-featured promise implementation. I also hope that it serves as a simple example implementation for others who might want to implement promises either as a learning exercise, or as a part of a project/library/framework.
Yes, but you shouldn't. You should try when.js instead. It is even faster and provides many more features, like dealing with collections of promises, competitive races, and timed promises.
Again, probably not. I have no plans to support it in any way. I'll probably change the API without warning like I did. You're on your own.
Download it, clone it, or npm install avow
var avow = require('avow');
// Create a promise
var promise = avow(function(resolve, reject) {
// ... do some work ...
// Resolve the returned promise with a value, another promise,
// or any well-behaved thenable.
resolve(value);
// resolve(anotherPromise);
// resolve(thenable);
// Or reject it
reject(reason);
});
// Create a fulfilled promise
vow = avow.lift(nonPromiseValue);
// Create a promise whose fate follows another promise
vow = avow.lift(anotherPromise);
// Attempt to assimilate and follow a well-behaved thenable's fate
vow = avow.lift(thenable);
// Create a rejected promise that will use
vow = avow.rejected(reason);
You can make your own custom configured instance of avow:
var myAvow = require('avow').construct(options);
Where options
is an object that can have any of the following properties:
nextTick
- specify your own nextTick functionunhandled
- callback to be notified when a promise becomes rejected, but has no rejection handler.handled
- callback to be notified if, at some point, a previously unhandled rejected promise become handled. Since promises are temporal, this can happen if a consumer adds a rejection handler using then()
at some point after the promise has been rejected.protect
- function that is called on every promise avow creates, to give you a chance to protect it, e.g. by supplying Object.freeze() here.npm install
npm test
MIT License, Copyright (c) 2012-2013 Brian Cavalier
FAQs
DEPRECATED: Use @invisible/assert
The npm package avow receives a total of 15 weekly downloads. As such, avow popularity was classified as not popular.
We found that avow demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.