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

scriptimporter

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scriptimporter

A slim script importer inspired by the importScripts function in web workers.

  • 0.1.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
2
Weekly downloads
 
Created
Source

ScriptImporter

Build status Windows build status GitHub version npm version Dependencies

A slim script importer inspired by the importScripts function in web workers.

Installation

This module can be installed from npm.

$ npm install scriptimporter

Usage

import importScripts from "scriptimporter";

var scripts = [
	"/js/myscript.js",
	"/js/foo.js",
	"/js/bar.js"
];

// A custom callback function.
function callback() {

	console.log("All scripts have been loaded!");

}

// The head DOM tag will be used internally to load the scripts,
// so make sure that the page is done loading the DOM content!
document.addEventListener("DOMContentLoaded", function func() {

	// Loads the given scripts independently.
	importScripts(scripts, callback);

	// Loads the given scripts in the specified order.
	importScripts(scripts, callback, true);

	// Clean up.
	document.removeEventListener("DOMContentLoaded", func);

});

Documentation

API

Contributing

Maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

License

Copyright (c) 2015 Raoul van Rüschen
Licensed under the Zlib license.

Keywords

FAQs

Package last updated on 06 Nov 2015

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