1.0.0 • Published 4 years ago

lisa.dynamic.js v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

dynamic.js

dynamic load single local or remote js file

how to use

npm i --save lisa.dynamic.js

## if you need unzip
npm i --save unzip
var dynamic = require('dynamic.js')

dynamic.require('/xxxx/demo/test.js').then(m =>{
    m.test()
})

dynamic.require('http://localhost:11549/test_url.js').then(m=>{
    m.test()
}).catch(e=>{
    console.log('you should run serve demo -p 11549, then retry : ' + e)
})

dynamic.require(__dirname + '/demo/test.zip').then(m=>{
    m.test()
})

dynamic.require('http://localhost:11549/testRemote.zip').then(m=>{
    m.test()
}).catch(e=>{
    console.log('you should run serve demo -p 11549, then retry : ' + e)
})

设置缓存地址

export CACHE_PATH=/tmp