![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
async-script-loader
Advanced tools
The package will append a script to the body and load it asynchronously.
There are a few other packages that do very similar things, however, I've found them all to load the script every time it is requested. A lot of the time the intention is to load the script once and then resolve immediately if it is already resolved. For example a React component that needs to load a 3rd party library for it work can load it every time the component is used, but the script will only be appended once (the behavior can be overwritten).
Simply import the module and pass it the src to load.
import asyncScriptLoader from 'async-script-loader'
asyncScriptLoader('https://url.to/script.js')
.then(() => {
console.log('script has been loaded')
})
.catch(err => console.log(err))
Some scripts provide can take a callback that is executed once the script is loaded and ready for use (e.g. Google Maps). Just set the callback as CALLBACK_PLACEHOLDER
and it will replaced with one when executing. The returned Promise will be resolved when that callback is called instead of when the script has been loaded.
import asyncScriptLoader from 'async-script-loader'
asyncScriptLoader('https://url.to/script.js?callback=CALLBACK_PLACEHOLDER')
.then(() => {
console.log('script has been loaded')
})
.catch(err => console.log(err))
If you want to load the script every time it is requested, simply:
import asyncScriptLoader from 'async-script-loader'
asyncScriptLoader('https://url.to/script.js', true) // Second parameter is reload
.then(() => {
console.log('script has been loaded')
})
.catch(err => console.log(err))
FAQs
Load a script asynchronously
We found that async-script-loader 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.