dongyuwei / CommonJS.erl

A CommonJS Module Packager in Erlang
Other
3 stars 0 forks source link

performance benchmark #4

Open dongyuwei opened 5 years ago

dongyuwei commented 5 years ago

和parcel bundler及webpack对比一下性能,尤其在文件数量比较多的情况下,如1000 entries files。

这是不公平的对比,因为CommonJS.erl不需要解析js到ast,而只是使用正则表达式提取required file。但也不是完全无意义的对比。基于正则表达式的方案也是简单,且稳定可靠的。对于大型或者超大型项目可能恰好很适用。