Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
A dependable Promises and async utility belt. Not a Promise
implementation.
promist
intends to cover and abstract the most common day to day dealings with async behavior and promises. It doesn't intend to be the most complete library, or an incredibly slim one, but rather be a dependable set of functions that serve as go-to for most use cases.
compose()
.
You can either import
directly from the package root (as shown in the examples below), or:
import { /* create functions to import */ } from 'promist/create';
import { /* compose functions to import */ } from 'promist/compose';
import { /* utils to import */ } from 'promist/utils';
import parallel, { /* or the parallel function to import */ } from 'promist/parallel';
import series, { /* or the series function to import */ } from 'promist/series';
Create functions return a newly formed promise.
wait(ms: Number): Promise
Returns a promise that will resolve after ms
milliseconds;
ms
: Number of milliseconds to wait for until resolution.import { wait } from 'promist';
wait(100).then(() => console.log('Resolved after 100ms'));
waitUntil(testCb: Function, ms?: Number): Promise
Returns a promise that resolves when testCb
returns truthy, with its value.
testCb
: Test function.ms
: The frequency testCb
should be called at until it returns truthy. Default: 20
.import { waitUntil } from 'promist';
let example = 1;
waitUntil(() => example === 10).then(() => console.log('Resolved after ~500ms'));
example = 10;
deferred(): Promise
Returns a newly formed deferrable promise, with methods:
promise.resolve(value: any): void
: Resolves the promise.promise.reject(reason: any): void
: Rejects the promise.import { deferred } from 'promist';
const promise = deferred();
promise.then(val => console.log('Resolves with "Hello":', val));
promise.resolve('Hello');
lazy(executor: Function): Promise
Returns a lazy promise: it's executor won't run until promise.then()
, promise.catch()
, or promise.finally()
are called for the first time.
executor
: A function with the same signature as in new Promise(executor)
.import { lazy } from 'promist';
const promise = lazy((resolve, reject) => {
const value = 1 + 1; // expensive task
resolve(value);
});
// Executor hasn't run yet.
promise.then((value) => console.log('Executor has run and resolved:', value));
immediate(): Promise
Returns a promise that resolves in the next event loop (setImmediate
).
import { immediate } from 'promist';
immediate().then(() => console.log('Next event loop')).
Compose functions mutate an input promise in order to provide some added functionality:
promise.then()
, promise.catch()
, or promise.finally()
.compose()
.deferrable(promise: Promise): Promise
promise
will acquire:
promise.resolve(value: any)
: Resolves the promise with the given value
.promise.reject(reason: any)
: Rejects the promise with the given reason
.If the input promise
resolves or rejects before promise.resolve()
or promise.reject()
are called, they won't have any effect. If the opposite ocurrs, the resolution or rejection value of the input promise will be discarded.
import { wait, deferrable } from 'promist';
const a = wait(100).then(() => 'Value 1');
deferrable(a);
a.resolve('Value 2');
a.then((val) => console.log('It will resolve with "Value 2"', val));
const b = Promise.resolve('Value 1');
deferrable(b);
wait(100).then(() => b.resolve('Value 2'));
b.then((val) => console.log('It will resolve with "Value 1"', val));
cancellable(promise: Promise): Promise
promise
will acquire:
promise.cancel()
: Cancels the promise.promise.cancelled
: Boolean, whether or not the promise has been cancelled.import { cancellable } from 'promist';
cancellable(myPromise);
// Cancel the promise
myPromise.cancel();
status(promise: Promise): Promise
promise
will acquire:
promise.status
: String, either "pending"
, "resolved"
, or "rejected"
.promise.value
: Contains the resolution value. null
if the promise is pending or rejected.promise.reason
: Contains the rejection reason. null
if the promise is pending or resolved.import { cancellable } from 'promist';
cancellable(myPromise);
// Cancel the promise
myPromise.cancel();
timed(promise: Promise): Promise
promise
will acquire:
promise.time
: (Number|void), the number of milliseconds it took the promise to resolve or reject. Defaults to null
before it's resolved/rejected. The count starts the moment timed()
is called.delay(ms: Number, delayRejection?: boolean): Function
ms
: Threshold in milliseconds.delayRejection
: Whether or not to also delay a promise rejection. Default: false
.Returns a function with signature: (promise: Promise): Promise
.
The returned promise will acquire a lower threshold in ms
for promise resolution. If the original promise
resolves before ms
, the returned promise won't resolve until ms
have passed; if it resolves after, it will resolve immediately. The count starts the moment delay()()
is called.
import { delay } from 'promist';
delay(500)(myPromise);
myPromise.then(() => {
// Will be called once 500ms pass or whenever 'myPromise' resolves after that.
// ...
})
timeout(ms: Number, reason?: any): Function
ms
: Threshold in milliseconds.reason
: Value the promise will reject with if it doesn't fulfill in ms
. If none is passed, it will cancel instead of reject.Returns a function with signature: (promise: Promise): Promise
.
The returned promise will acquire an upper threshold in ms
after which, if it hasn't fulfilled, it will either cancel or reject, depending on whether a reason
argument was passed. The count starts the moment timeout()()
is called.
import { timeout } from 'promist';
timeout(500)(myPromise);
compose(...fns: Function[]): Function
Takes in an unlimited number of compose functions as arguments, and returns a function that should receive the promise to mutate.
import { compose, cancellable, delay, deferrrable } from 'promist';
const p1 = compose(cancellable, delay(500), deferrable)(myPromise);
isPromise(object: any): boolean
Returns true
if object
is a thenable, false
otherwise.
import { isPromise } from 'promist';
isPromise(myPromise);
parallel.reduce()
executes this serially). The passed functions (callbacks) receive an array with the values the input array of promises resolved to.import { parallel } from 'promist';
import { series } from 'promist';
parallel.map(myPromiseArr, (x, i, arr) => {
// arr will contain the resolved values.
return x;
});
series.map(myPromiseArr, (x, i, arr) => {
// arr will be myPromiseArr
return x;
})
map(arr: Promise[], callback: Function): Promise
arr
: An array of promises.callback
: With the same signature as Array.prototype.map()
. Can be a promise returning/async function.filter(arr: Promise[], callback: Function): Promise
arr
: An array of promises.callback
: With the same signature as Array.prototype.filter()
. Can be a promise returning/async function.reduce(arr: Promise[], callback: Function, initialValue: any): Promise
arr
: An array of promises.callback
: With the same signature as Array.prototype.reduce()
. Can be a promise returning/async function.initialValue
: An initial value; if absent, the resolved value of the first promise in the array will be taken as initialValue
.each(arr: Promise[], callback: Function): Promise
arr
: An array of promises.callback
: With the same signature as Array.prototype.forEach()
. Can be a promise returning/async function.FAQs
A dependable promises and async utility belt
The npm package promist receives a total of 2,288 weekly downloads. As such, promist popularity was classified as popular.
We found that promist demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
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.