New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
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
  • npm
  • Socket score

Version published
Maintainers
1
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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc