在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1、场景最近基于 web 在做一些类似于插件系统一样的东西,所以折腾了一下 js 沙箱,以执行第三方应用的代码。 2、沙箱基础功能在实现之前(好吧,其实是在调研了一些方案之后),确定了沙箱基于 export interface IEventEmitter { /** * 监听事件 * @param channel * @param handle */ on(channel: string, handle: (data: any) => void): void; /** * 取消监听 * @param channel */ offByChannel(channel: string): void; /** * 触发事件 * @param channel * @param data */ emit(channel: string, data: any): void; } /** * 一个基本 js vm 的能力 */ export interface IJavaScriptShadowbox extends IEventEmitter { /** * 执行任意代码 * @param code */ eval(code: string): void; /** * 销毁实例 */ destroy(): void; } 除了通信的能力之外,还额外要求了两个方法:
JavaScript 沙箱示意图: 下面吾辈将分别演示使用 3、iframe 实现老实说,谈到 web 中的沙箱,可能第一时间想到的就是 当然可以将 js 代码包裹到 html 中然后执行 function evalByIframe(code: string) { const html = `<!DOCTYPE html><body><script>$[code]</script></body></html>`; const iframe = document.createElement("iframe"); iframe.width = "0"; iframe.height = "0"; iframe.style.display = "none"; document.body.appendChild(iframe); const blob = new Blob([html], { type: "text/html" }); iframe.src = URL.createObjectURL(blob); return iframe; } evalByIframe(` document.body.innerHTML = 'hello world' console.log('location.href: ', location.href) console.log('localStorage: ',localStorage) `); 但
4、web worker 实现基本上, function evalByWebWorker(code: string) { const blob = new Blob([code], { type: "application/javascript" }); const url = URL.createObjectURL(blob); return new Worker(url); } evalByWebWorker(` console.log('location.href: ', location.href) // console.log('localStorage: ', localStorage) `); 但同时,它确实比
5、quickjs 实现使用 quickjs 是什么?它是一个 JavaScript 的运行时,虽然我们最常用的运行时是浏览器和 async function evalByQuickJS(code: string) { const quickJS = await getQuickJS(); const vm = quickJS.createVm(); const res = vm.dump(vm.unwrapResult(vm.evalCode(code))); vm.dispose(); return res; } console.log(await evalByQuickJS(`1+1`)); 优点:
缺点:
6、结论最终,我们选择了基于接口实现了 web worker 与 quickjs 的 EventEmitter,并支持随时切换的能力。 到此这篇关于JavaScript 沙箱探索的文章就介绍到这了,更多相关JavaScript 沙箱内容请搜索极客世界以前的文章或继续浏览下面的相关文章希望大家以后多多支持极客世界! |
请发表评论