文件名称:uniroll:在浏览器中使用通用前端捆绑器
文件大小:718KB
文件格式:ZIP
更新时间:2024-02-21 07:36:56
compiler rollup universal-javascript uniroll CompilerTypeScript
单轮 在浏览器中有意见的前端编译器。 捆绑在浏览器中以快速制作原型 通过https://esm.sh解析模块 typescript 这个怎么运作 通过rollup-plugin-virtual-fs创建虚拟rollup-plugin-virtual-fs 通过rollup-plugin-http-resolve加载npm模块 用typescript编译 rollup编译 在浏览器中运行 npm install uniroll typescript rollup --save import { bundle } from "uniroll" ; const files = { "/foo.tsx" : "export default 1" , "/index.tsx" : "import foo from 'foo';\nconsole.log('hello', foo)" , } ; const bundled = await bundle ( { files , input : "/index.tsx" , } ) ; const out = await bund