Skip to content

Instantly share code, notes, and snippets.

@0XDE57
Created March 12, 2025 08:19
Show Gist options
  • Save 0XDE57/77cb01401393243a00b2a0e7cb97b3d2 to your computer and use it in GitHub Desktop.
Save 0XDE57/77cb01401393243a00b2a0e7cb97b3d2 to your computer and use it in GitHub Desktop.
Test if browser supports Web Serial API: https://developer.mozilla.org/en-US/docs/Web/API/Web_Serial_API
<!DOCTYPE html>
<html>
<body>
<h1 id="cereal">R U 4 Cereal?</h1>
</body>
<script>
var header = document.querySelector("#cereal")
if (navigator.serial) {
alert("This browser supports web cereal!");
header.textContent = "Web Serial API supported!";
} else {
alert("This browser does NOT support web cereal :(");
header.textContent = "Web Serial API NOT supported.";
}
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment