New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@automattic/load-script

Package Overview
Dependencies
Maintainers
21
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@automattic/load-script

Async Script Loader.

1.0.0
latest
Source
npm
Version published
Weekly downloads
4.2K
10.8%
Maintainers
21
Weekly downloads
 
Created
Source

Async Script Loader

This utility function allows us to use a standardized method of loading remote scripts and injecting them into the <head> of our document to bring external functionality into the app.

Usage

import { loadScript, loadjQueryDependentScript } from '@automattic/load-script';
loadScript( REMOTE_SCRIPT_URL, function( error ) {
	if ( error ) {
		debug( 'Script ' + error.src + ' failed to load.' );
		return;
	}
	debug( 'Script loaded!' );
} );

// if we need jQuery, this function will load it (if it's not loaded already)
loadjQueryDependentScript( REMOTE_SCRIPT_URL, function( error ) {
	if ( error ) {
		debug( 'Script ' + error.src + ' failed to load.' );
		return;
	}
	debug( 'Script and jQuery are loaded!' );
} );

Error handling

The callback should expect a single argument, which will be null on success or an object on failure. The object contains the src property, which will contain the src url of the script that failed to load.

Keywords

wordpress

FAQs

Package last updated on 03 Jun 2019

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