synchronized-promise
TypeScript icon, indicating that this package has built-in type declarations

0.3.1 • Public • Published

synchronized-promise

All Contributors

npm version Build Status

Turn ES6 Promise into synchronize function call, a simple wrapper of deasync package

Installation

npm install synchronized-promise --save

Usage

First, you need to require the synchronized-promise packgage, for JavaScript:

const sp = require('synchronized-promise')

For TypeScript or ES6 later JavaScript:

import sp from 'synchronized-promise'

Then call it as the following example:

// An promise base async function
let asyncFunction = (value) => {
  return new Promise((resolve, reject) => {
    setTimeout(function () {
      resolve(value)
    }, 2000)
  })
}
 
// regular usage
asyncFunction(5).then(value => value === 5)
 
// make it synchronized
let syncFunc = sp(asyncFunction)
const value = syncFunc(5) // value === 5

See test.js for usage in details.

Contributors ✨

Thanks goes to these wonderful people (emoji key):


侠小然

💻

Clar Charron

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

Package Sidebar

Install

npm i synchronized-promise

Weekly Downloads

5,825

Version

0.3.1

License

MIT

Unpacked Size

6.59 kB

Total Files

5

Last publish

Collaborators

  • yukaii