Crazy Rabbit
03/23/2023, 2:52 PMDanTheGoodman
03/23/2023, 3:16 PMSkye
03/23/2023, 3:17 PMHardAtWork
03/23/2023, 3:17 PMkian
03/23/2023, 3:17 PMHardAtWork
03/23/2023, 3:19 PMHardAtWork
03/23/2023, 3:19 PMDanTheGoodman
03/23/2023, 3:19 PMDanTheGoodman
03/23/2023, 3:20 PMDanTheGoodman
03/23/2023, 3:20 PMHardAtWork
03/23/2023, 3:20 PMDanTheGoodman
03/23/2023, 3:20 PMDanTheGoodman
03/23/2023, 3:21 PMHardAtWork
03/23/2023, 3:21 PMHardAtWork
03/23/2023, 3:21 PMDanTheGoodman
03/23/2023, 3:21 PMkian
03/23/2023, 3:21 PMaddEventListener
DanTheGoodman
03/23/2023, 3:22 PMDanTheGoodman
03/23/2023, 3:22 PMHardAtWork
03/23/2023, 3:24 PMDanTheGoodman
03/23/2023, 3:24 PMkian
03/23/2023, 3:28 PMkian
03/23/2023, 3:28 PMSpoleto
03/23/2023, 3:50 PMDanTheGoodman
03/23/2023, 4:13 PMdave
03/23/2023, 5:58 PMdave
03/23/2023, 5:59 PMGeorgeTailor
03/23/2023, 7:18 PMUnhandled Promise Rejection: Error: recursive use of an object detected which would lead to unsafe aliasing in rust
when using HTMLRewriter to append elements?
This is the code that fails:
class SimilarWordsElementHandler {
constructor(similarWords) {
this.similarWords = similarWords;
}
async element(element) {
element.setInnerContent(null);
for (const similarWord of this.similarWords) {
element.append(`<li>
<a href='/word/${encodeURIComponent(similarWord)}'>
<span>${similarWord}</span>
</a>
</li>`, { html: true });
}
}
}
DemosJarco
03/23/2023, 11:01 PMnodejs_compat
flag from today's post (https://blog.cloudflare.com/workers-node-js-asynclocalstorage/) and the node_compat = true
flag that has been available all this time?kian
03/23/2023, 11:02 PMnode_compat = true
is just polyfills in esbuild