Jon Yongfook

Low-hanging fruit for JS speed up If your code looks like this await something() await another() await last() Change it to this await Promise.all([something(), another(), last()]) Won’t be relevant every time, but I just halved the execution...