We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
这是puerts的默认模式,使用V8作为JS执行的虚拟机。兼容各个主流操作系统。
使用quickjs作为JS执行的虚拟机。相比V8,quickjs的优势是体积非常小,只有几百K。性能比V8稍差(参见https://bellard.org/quickjs/bench.html ),不支持调试。
使用Node.js作为JS执行的虚拟机,因为Node.js本身也是基于V8,所以基本与V8版本相同(Node.js官方有可能对V8代码进行了一定量魔改)。这个版本和V8不同之处在于可以使用Node.js的大部分API,对npm包的使用也更加便利。