runtime-import
runtime-import copied to clipboard
前端资源(js & css)运行时加载工具.
runtime-import
Import remote resource(js or css) asynchronously.
Install
npm i runtime-import --save
Usage
importScript
Import a javascript file, if the file is in UMD format, return it's export object.
import { importScript } from 'runtime-import'
try {
const $ = await importScript('//foobar.com/jquery.js')
} catch (err) {
console.error(err)
}
importStyle
Import a css file.
import { importStyle } from 'runtime-import'
try {
await importStyle('//foobar.com/bootstrap.css')
} catch (err) {
console.error(err)
}
importComponent
Import a component. In umd mode, if the last javascript file is in UMD format, return it's export object.
Options:
- js: List of js files.
- css: List of css files.
- crossOrigin: value of attribute
crossorigin
of script tags created internally. - umd: Whether UMD mode is enabled.
Note:
- The default value of the field
crossOrigin
of importComponent's options istrue
. It sets the attributecrossorigin
of<script>
elements created by importComponent to"anonymous"
. If you don't want the attribute"crossorigin"
to be setted, please make sure that the fieldcrossOrigin
of importComponent's options setted to""
.
import { importComponent } from 'runtime-import'
try {
const bootstrap = await importComponent({
js: ['//foobar.com/bootstrap.js'],
css: ['//foobar.com/bootstrap.css'],
crossOrigin: '',
umd: true
})
} catch (err) {
console.error(err)
}
importModule
importComponent
use to be called importModule
, legacy projects could use importModule
as usual.