Socket
Book a DemoInstallSign in
Socket

@segment/load-script

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

@segment/load-script

Dynamically and asynchronously load a script file.

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

load-script

Sauce Test Status

Component which asynchronously loads a JavaScript file by appending a script tag to the DOM.

Installation

$ npm install @segment/load-script

Examples

var load = require('@segment/load-script');

load('//www.google-analytics.com/ga.js');

Load in a URL depending on the current protocol.

var load = require('@segment/load-script');

load({
  http: 'http://www.google-analytics.com/ga.js',
  https: 'https://ssl.google-analytics.com/ga.js'
});

API

loadScript(src || options, callback)

Load the given script either by passing a src string, or an options object:

{
  src: '//example.com/lib.js', // same as `src` string
  http: 'http://example.com/lib.js', // `src` to load if the protocol is `http:`
  https: 'https://ssl.example.com/lib.js' // `src` to load if the protocol is `https:`
}

You can also pass in a callback that will be called when the script loads with err, event.

Keywords

DOM

FAQs

Package last updated on 09 May 2016

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.