Last active
January 3, 2023 22:48
-
-
Save nkbt/f6b0d071c048d755f88b46f21dd34e90 to your computer and use it in GitHub Desktop.
Async require library from URL for Node
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const https = require('https'); | |
const vm = require('vm'); | |
const requireCache = {}; | |
const requireUrl = url => new Promise((resolve, reject) => url in requireCache ? | |
resolve(requireCache[url]) : | |
https.get(url, res => { | |
const result = []; | |
res.on('data', chunk => result.push(chunk.toString('utf-8'))); | |
res.on('error', reject); | |
res.on('end', () => { | |
const sandbox = {}; | |
vm.createContext(sandbox); | |
try { | |
vm.runInContext(result.join(''), sandbox); | |
} catch (error) { | |
reject(error); | |
return; | |
} | |
Object.assign(requireCache, {[url]: sandbox}); | |
resolve(requireCache[url]); | |
}); | |
})); | |
const run = async () => { | |
const {jsyaml} = await requireUrl('https://unpkg.com/[email protected]/dist/js-yaml.js'); | |
console.log(`yaml`, jsyaml.load(` | |
hello: world | |
`)); | |
}; | |
run(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment