Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@awaitbox/window-loaded
Advanced tools
Await for the window
to be loaded.
npm i @awaitbox/window-loaded --save
The windowLoaded
async function returns a promise that will resolve when the
window
's load
event fires in the future (i.e. sub-resources like img tags,
scripts, audio tags, etc, have finished loading), or resolves immediately if
loaded
already happened.
Learn more about the load
event on
MDN.
You can use it in async functions:
import windowLoaded from '@awaitbox/window-loaded'
async function main() {
await windowLoaded()
console.log( 'Ready to begin awesome!' )
}
main()
You can of course use it as a Promise:
import windowLoaded from '@awaitbox/window-loaded'
windowLoaded()
.then( data => console.log( 'begin awesome!' ) )
Chain values will pass through if you use it in a Promise chain:
import windowLoaded from '@awaitbox/window-loaded'
fetch( ... )
.then( ... )
.then( windowLoaded ) // passes data through
.then( data => console.log( 'use data for the awesome!', data ) )
This is written in ES2016 JavaScript. To use this in pre-ES2016 environments, you'll need to run this through a transpiler like Babel (and I recommend using the fast-async plugin to get the best results). See some tips here on wiring it up with Webpack: http://2ality.com/2017/06/pkg-esnext.html.
FAQs
@awaitbox/window-loaded =======================
We found that @awaitbox/window-loaded demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.