patchboot
Version:
A Scuttlebutt bootloader
26 lines (23 loc) • 688 B
HTML
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval'"> -->
<title>PatchBoot - Scuttlebutt bootloader</title>
<style>
body {
margin: 0;
}
</style>
</head>
<body>
<script type="module">
import './patch-boot.js'
import ssbConnect from './scuttle-shell-browser-consumer.js'
const patchBoot = document.createElement('patch-boot')
patchBoot.ssbConnect = ssbConnect
document.body.appendChild(patchBoot)
</script>
</body>
</html>