4.0.2 • Published 1 year ago

@pushrocks/smartpromise v4.0.2

Weekly downloads
235
License
MIT
Repository
gitlab
Last release
1 year ago

@pushrocks/smartpromise

simple promises and Deferred constructs

Availabililty and Links

Status for master

Status CategoryStatus Badge
GitLab Pipelinespipeline status
GitLab Pipline Test Coveragecoverage report
npmnpm downloads per month
SnykKnown Vulnerabilities
TypeScript SupportTypeScript
node Supportnode
Code StyleCode Style
PackagePhobia (total standalone install weight)PackagePhobia
PackagePhobia (package size on registry)PackagePhobia
BundlePhobia (total size when bundled)BundlePhobia

Usage

Use TypeScript for best in class instellisense.

Note: smartq uses native ES6 promises smartq does not repeat any native functions, so for things like .all() simply use Promise.all()

import * as q from '@pushrocks/smartpromise';

// Deferred
// -----------------------------------------------
let myAsyncFunction = (): Promise<string> => {
  let done = q.defer<string>(); // returns your typical Deferred object
  setTimeout(() => {
    done.resolve('hi'); // will throw type error for other types than string as argument ;)
  }, 6000);

  console.log(done.status); // logs "pending";
  done.promise.then(() => {
    console.log(done.status); // logs "fullfilled"
    console.log(done.duration); // logs the milliseconds between instantiation and fullfillment
  });

  return done.promise;
};

let myAsyncFunction2 = async () => {
  let aString = await myAsyncFunction();
  console.log(aString); // will log 'hi' to console
};

myAsyncFunction2();

// Resolved and Rejected promises
// ------------------------------------------------
q.resolvedPromise(`I'll get logged to console soon`).then((x) => {
  console.log(x);
});

q.rejectedPromise(`what a lovely error message`)
  .then(
    () => {
      console.log('This never makes it to console');
    } /*, alternatively put a reject function here */
  )
  .catch((err) => {
    console.log(err);
  });

// Promisify (typed)
// ------------------------------------------------

let myCallbackedFunction = (someString: string, someNumber: number, cb) => {
  cb(null, someString);
};

let myPromisedFunction = q.promisify(myCallbackFunction);
myPromisedFunction('helloThere', 2).then((x) => {
  console.log(x); // will log 'helloThere' to console
});

Contribution

We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can contribute one time or contribute monthly. :)

For further information read the linked docs at the top of this readme.

Legal

MIT licensed | © Task Venture Capital GmbH | By using this npm module you agree to our privacy policy

projectinfosmartrxsmartsocket@push.rocks/websetup@push.rocks/smartspawn@push.rocks/smartswagger@push.rocks/smartsystem@push.rocks/smartnetwork@push.rocks/smartntml@push.rocks/smartocr@push.rocks/smartsass@pushrocks/early@pushrocks/easyserve@pushrocks/gulp-browser@pushrocks/gulp-function@pushrocks/levelcache@pushrocks/lik@pushrocks/mongodump@pushrocks/npmextra@pushrocks/projectinfo@pushrocks/smartacme@pushrocks/smartanalytics@pushrocks/smartarchive@pushrocks/smartbucket@pushrocks/smartcache@pushrocks/smartchok@pushrocks/tapbundle@pushrocks/taskbuffer@pushrocks/webrequest@pushrocks/websetup@pushrocks/webstore@pushrocks/smartcli@pushrocks/smartclickhouse@pushrocks/smartcrypto@pushrocks/smartcsv@pushrocks/smartdata@pushrocks/smartdelay@pushrocks/smartdns@pushrocks/smartdrive@pushrocks/smartenv@pushrocks/smartevent@pushrocks/smartexpect@pushrocks/smartexpress@pushrocks/smartfile@pushrocks/smartfuzzy@pushrocks/smartgit@pushrocks/smartguard@pushrocks/smartgulp@pushrocks/smarthash@pushrocks/smartscaf@pushrocks/smartserve@pushrocks/smartshell@pushrocks/smartsocket@pushrocks/smartspawn@pushrocks/smartssh@pushrocks/smartssr@pushrocks/smartstate@pushrocks/smartstream@pushrocks/smartswagger@pushrocks/smartsystem@pushrocks/smarttime@pushrocks/smartuniverse@pushrocks/streamfunction@pushrocks/smartmongo@pushrocks/smartnetwork@pushrocks/smartnginx@pushrocks/smartnpm@pushrocks/smartntml@pushrocks/smartocr@pushrocks/smartparam@pushrocks/smartpdf@pushrocks/smartproxy@pushrocks/smartrequest@pushrocks/smartrx@pushrocks/smartsass@pushrocks/smarthbs@pushrocks/smartinteract@pushrocks/smartipc@pushrocks/smartkey@pushrocks/smartlog-destination-local@push.rocks/gulp-browser@push.rocks/mongodump@push.rocks/smartanalytics@push.rocks/smartcache@push.rocks/smartclickhouse@push.rocks/smartcsv@push.rocks/smartdns@push.rocks/smartdrive@push.rocks/smartevent@push.rocks/smartfuzzy@push.rocks/smartguard@push.rocks/smarthbs@push.rocks/smartipc@push.rocks/smartkey@mojoio/cloudflare@mojoio/docker@mojoio/elasticsearch@mojoio/letterxpress@mojoio/medium@mojoio/slack
3.1.10

1 year ago

3.1.9

1 year ago

3.1.8

1 year ago

4.0.1

1 year ago

4.0.0

1 year ago

4.0.2

1 year ago

3.1.7

2 years ago

3.1.6

3 years ago

3.1.5

3 years ago

3.1.4

3 years ago

3.1.3

4 years ago

3.1.2

4 years ago

3.1.1

4 years ago

3.0.6

5 years ago

3.0.5

5 years ago

3.0.2

5 years ago

3.0.1

5 years ago

3.0.0

5 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago