Skip to main content
Module

x/deno_dom/bench/bench-parse.sh

Browser DOM & HTML parser in Deno
Extremely Popular
Go to Latest
File
#!/bin/bash
RUNS=40
echo -n "Deno DOM WASM - "deno run --allow-read ./bench-wasm-parse.ts $RUNS 2>&1 | grep time:
echo -n "Deno DOM Native - "deno run -A --unstable ./bench-native-parse.ts $RUNS 2>&1 | grep time:
echo -n "Node.js Parse5 - "node ./bench-parse5.js $RUNS