You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

blocking-await

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blocking-await

Synchronously wait for a Promise to resolve

1.0.0
latest
Source
npmnpm
Version published
Weekly downloads
6
-14.29%
Maintainers
1
Weekly downloads
 
Created
Source

blocking-await

Synchronously wait for a Promise to resolve

Use this module to block the entire node process while waiting for a Promise to resolve.

NOTE: In almost every case you should not use this and instead opt for true async functions using JavaScript's built-in await construct. Your entire app will become unresponsive while waiting.

Installation

npm install blocking-await --save

Usage

var wait = require('blocking-await')
var got = require('got')

var res = wait(got('todomvc.com'))
console.log(res.body)
//=> '<!doctype html> ...'

API

Wait for a Promise to resolve

wait(promise) -> value

Synchronously waits for a Promise to resolve. This locks up the entire node process.

promise

Type: Promise

The promise to wait on.

return

Type: T

Returns the value the promise resolved (or throws what it rejected).

FAQs

Package last updated on 23 Apr 2017

Did you know?

Socket

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.

Install

Related posts