dynamic-load-script
v1.0.6
Published
Dynamic loading (CDN / local script)
Downloads
13
Readme
dynamic-load-script
English | 简体中文
Dynamic loading (CDN / local script)
The aim of the project is to create an easy to use, lightweight, cross-browser, general purpose loading script library.
Check the code in the
example
if there is a problem in use.
Installation
In a browser
You can use it at ./dist/*
<script src="load-script.min.js"></script>
Using npm
npm install dynamic-load-script --save
Using yarn
yarn add dynamic-load-script --save
Usage
import loadScript from 'dynamic-load-script';
loadScript('yourCDN')
.then((res) => {
// success...
})
.catch((err) => {
// fail...
});
Cloning this repository
Cloning the repo with all its history results in a ~2 MB download. If you don't need the whole history you can use the depth
parameter to significantly reduce download size.
git clone --depth=1 https://github.com/kangyana/dynamic-load-script.git
Change log
License
Copyright (c) 2022-present, kangyana